17 lines
319 B
C++
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 |