1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
-
-
-
-
-
-
- #ifndef __INSTRUMENT_H
- #define __INSTRUMENT_H
-
- #include "LemmaObject.h"
-
- namespace Lemma {
-
-
-
-
-
-
-
- class Instrument : public LemmaObject {
-
- friend std::ostream &operator<<(std::ostream &stream,
- const Instrument &ob);
-
- public:
-
-
-
-
-
- YAML::Node Serialize() const;
-
-
-
-
-
-
-
-
-
-
-
- virtual inline std::string GetName() const {
- return this->CName;
- }
-
-
-
- protected:
-
-
-
-
- Instrument ( const YAML::Node& node );
-
-
- Instrument ( );
-
-
- ~Instrument ();
-
- private:
-
-
- static constexpr auto CName = "Instrument";
-
- };
-
- }
-
- #endif
|