#ifndef _ALADIN_LOGBOOK_HPP_ #define _ALADIN_LOGBOOK_HPP_ #ifndef _COMMON_WINDOWS_HPP_ #include #endif #ifndef _COMMON_BLOCK_HPP_ #include #endif #ifndef _ALADIN_DIVELOG_HPP_ #include #endif class LogBook : public Block { public: LogBook(); virtual ~LogBook(); bool readFrom(Array &array,CurrentStatus &status); private: }; #endif