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

21 lines
411 B
C++

#ifndef _ALADIN_LOGBOOK_HPP_
#define _ALADIN_LOGBOOK_HPP_
#ifndef _COMMON_WINDOWS_HPP_
#include <common/windows.hpp>
#endif
#ifndef _COMMON_BLOCK_HPP_
#include <common/block.hpp>
#endif
#ifndef _ALADIN_DIVELOG_HPP_
#include <aladin/divelog.hpp>
#endif
class LogBook : public Block<DiveLog>
{
public:
LogBook();
virtual ~LogBook();
bool readFrom(Array<BYTE> &array,CurrentStatus &status);
private:
};
#endif