///////////////////////////////////////////////////////////////////////////// // Name: pghead2.h // Author: Laurent Pugin // Created: 2017 // Copyright (c) Authors and others. All rights reserved. ///////////////////////////////////////////////////////////////////////////// #ifndef __VRV_PGHEAD2_H__ #define __VRV_PGHEAD2_H__ #include "runningelement.h" namespace vrv { //---------------------------------------------------------------------------- // PgHead2 //---------------------------------------------------------------------------- /** * This class represents an MEI pgHead2. */ class PgHead2 : public RunningElement { public: /** * @name Constructors, destructors, and other standard methods * Reset method resets all attribute classes */ ///@{ PgHead2(); virtual ~PgHead2(); virtual void Reset(); virtual std::string GetClassName() const { return "PgHead2"; } virtual ClassId GetClassId() const { return PGHEAD2; } ///@} //----------// // Functors // //----------// private: // public: // private: // }; } // namespace vrv #endif