You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- //inv.h
- #ifndef __INV_H__
- #define __INV_H__
-
- class ser;
- class par;
-
- #include "wdf.h"
- #include "ser.h"
- #include "par.h"
-
- class inv : public Adaptor {
- public:
- template <class Port>inv(Port *left);
- inv(ser *l);
- T waveUp();
- void setWD(T waveparent);
- };
-
- #else
- #endif
|