#ifndef _ALADIN_DIVEPROFILE_HPP_ #define _ALADIN_DIVEPROFILE_HPP_ #ifndef _COMMON_BLOCK_HPP_ #include #endif #ifndef _ALADIN_PROFILEDATA_HPP_ #include #endif class File; class DiveProfile : public Block { public: DiveProfile(void); DiveProfile(const DiveProfile &diveProfile); virtual ~DiveProfile(); DiveProfile &operator=(const DiveProfile &diveProfile); bool operator==(const DiveProfile &diveProfile)const; bool readFrom(File &inFile); bool writeTo(File &outFile); int getMaxDepth(void)const; int getBottomTime(void)const; private: }; #endif