Change/improve enum as IN and OUT are defined via windows.h

This commit is contained in:
Paul Davis 2013-07-11 15:22:33 -04:00
parent 029c530203
commit 32f4d7787e
2 changed files with 7 additions and 7 deletions

View file

@ -46,8 +46,8 @@ public:
private:
/* see PortMatrix: signal flow from 0 to 1 (out to in) */
enum {
OUT = 0,
IN = 1,
FLOW_OUT = 0,
FLOW_IN = 1,
};
};