diff options
Diffstat (limited to 'Project/SyncGenerator.h')
-rw-r--r-- | Project/SyncGenerator.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Project/SyncGenerator.h b/Project/SyncGenerator.h new file mode 100644 index 0000000..9b037fc --- /dev/null +++ b/Project/SyncGenerator.h @@ -0,0 +1,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 |