123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
-
-
-
-
-
-
- #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 std::string GetName() const = 0;
-
-
-
- protected:
-
-
-
-
- Instrument ( const YAML::Node& node );
-
-
- Instrument ( );
-
-
- ~Instrument ();
-
- private:
-
-
- static constexpr auto CName = "Instrument";
-
- };
-
- }
-
- #endif
|