Files
Work/aladin/hold/diveprofile.hpp
2024-08-07 09:12:07 -04:00

17 lines
319 B
C++

#ifndef _ALADIN_DIVEPROFILE_HPP_
#define _ALADIN_DIVEPROFILE_HPP_
#ifndef _COMMON_BLOCK_HPP_
#include <common/block.hpp>
#endif
#ifndef _ALADIN_PROFILEDATA_HPP_
#include <aladin/profiledata.hpp>
#endif
class DiveProfile : public Block<ProfileData>
{
public:
DiveProfile();
virtual ~DiveProfile();
private:
};
#endif