12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
-
-
-
-
-
-
- #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:
-
-
-
-
-
-
-
-
-
-
-
-
-
- virtual inline std::string GetName() const {
- return this->CName;
- }
-
-
-
- protected:
-
-
-
-
- Instrument ( );
-
-
- ~Instrument ();
-
- private:
-
-
- static constexpr auto CName = "Instrument";
-
- };
-
- }
-
- #endif
|