summaryrefslogtreecommitdiff
path: root/src/mg_schematic.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mg_schematic.h')
-rw-r--r--src/mg_schematic.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/mg_schematic.h b/src/mg_schematic.h
index 4a85f69a6..30bd0e4fd 100644
--- a/src/mg_schematic.h
+++ b/src/mg_schematic.h
@@ -41,6 +41,11 @@ class NodeResolver;
#define MTSCHEM_PROB_NEVER 0x00
#define MTSCHEM_PROB_ALWAYS 0xFF
+enum SchematicType
+{
+ SCHEMATIC_NORMAL,
+};
+
class Schematic : public ObjDef, public NodeResolver {
public:
@@ -83,7 +88,7 @@ public:
return "schematic";
}
- Schematic *create(int type)
+ static Schematic *create(SchematicType type)
{
return new Schematic;
}