summaryrefslogtreecommitdiffstats
path: root/Project/SyncGenerator.h
blob: 9b037fc8a433d701f902ff9c4a6867df8b772699 (plain)
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