1 #ifndef INVERTERSCHEMA_H
2 #define INVERTERSCHEMA_H
5 #include "blockSchema.h"
8 * An inverter : a special symbol corresponding to '*(-1)'
9 * to create more compact diagrams
11 class inverterSchema
: public blockSchema
15 friend schema
* makeInverterSchema (const string
& color
);
17 virtual void draw(device
& dev
);
19 inverterSchema (const string
& color
);
23 #endif // INVERTERSCHEMA_H