Develop and Download Open Source Software

Browse Subversion Repository

Contents of /trunk/circuits/QNot.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1 - (show annotations) (download) (as text)
Wed Aug 3 10:14:23 2011 UTC (12 years, 9 months ago) by kaityo
File MIME type: text/x-chdr
File size: 660 byte(s)
First commit
1 //---------------------------------------------------------------------------
2 #ifndef QNotH
3 #define QNotH
4
5 #include "QCircuit.h"
6 //---------------------------------------------------------------------------
7 class QNot : public QCircuit {
8 private:
9
10 public:
11 QNot(int x,int y);
12
13
14 virtual int GetType(void) { return QC_NOT; }
15 virtual string GetTypeStr(void) { return "QNOT"; }
16
17 void Draw(QDraw *Draw);
18 string GetCalcText(void);
19 void DrawPS(QPSDraw *psDraw);
20 void Reverse(int y);
21 TRect GetOccupiedRect();
22 QCircuit *Clone();
23 };
24 //---------------------------------------------------------------------------
25 #endif

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26