diff options
Diffstat (limited to 'Project/SyncMotor.h')
-rw-r--r-- | Project/SyncMotor.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Project/SyncMotor.h b/Project/SyncMotor.h new file mode 100644 index 0000000..ab7a1ac --- /dev/null +++ b/Project/SyncMotor.h @@ -0,0 +1,17 @@ +#ifndef SYNCMOTOR_H +#define SYNCMOTOR_H + +#include "Machines.h" + +class SyncMotor : public Machines +{ +public: + SyncMotor(); + ~SyncMotor(); + + virtual void DrawSymbol() const; + virtual bool GetContextMenu(wxMenu& menu); + +}; + +#endif // SYNCMOTOR_H |