// Package.h - base class for assignment 5 // Will England #ifndef PACKAGE_H #define PACKAGE_H class package { protected: int length; int girth; float weight; public: package() {length = 0; girth = 0; weight = 0;} }; #endif