1 #pragma once
2 
3 #ifndef TFXTYPES_INCLUDED
4 #define TFXTYPES_INCLUDED
5 
6 enum eFxSchematicPortType {
7   eFxOutputPort     = 200,
8   eFxInputPort      = 201,
9   eFxLinkPort       = 202,
10   eFxGroupedInPort  = 203,
11   eFxGroupedOutPort = 204
12 };
13 
14 enum eFxType {
15   eNormalFx              = 100,
16   eZeraryFx              = 101,
17   eMacroFx               = 102,
18   eColumnFx              = 103,
19   eOutpuFx               = 104,
20   eXSheetFx              = 106,
21   eGroupedFx             = 107,
22   eNormalImageAdjustFx   = 108,
23   eNormalLayerBlendingFx = 109,
24   eNormalMatteFx         = 110
25 };
26 
27 #endif
28