1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#ifndef SYNCGENERATOR_H #define SYNCGENERATOR_H #include "Machines.h" class SyncGenerator : public Machines { public: SyncGenerator(); ~SyncGenerator(); virtual void DrawSymbol() const; virtual bool GetContextMenu(wxMenu& menu); private: std::vector<wxPoint2DDouble> m_sinePts; }; #endif // SYNCGENERATOR_H