FAUST compiler  0.9.9.6b8
inverterSchema.h
Go to the documentation of this file.
1 #ifndef INVERTERSCHEMA_H
2 #define INVERTERSCHEMA_H
3 
4 
5 #include "blockSchema.h"
6 
12 {
13 
14  public:
15  friend schema* makeInverterSchema (const string& color);
16 
17  virtual void draw(device& dev);
18  private:
19  inverterSchema (const string& color);
20 
21 };
22 
23 #endif // INVERTERSCHEMA_H
friend schema * makeInverterSchema(const string &color)
Build n cables in parallel.
virtual void draw(device &dev)
Nothing to draw.
Definition: device.h:32
inverterSchema(const string &color)
Build n cables in parallel.
A simple rectangular box with a text and inputs and outputs.
Definition: blockSchema.h:35
An inverter : a special symbol corresponding to '*(-1)' to create more compact diagrams.
An abstract block diagram schema.
Definition: schema.h:97