Horizon
schematic.hpp
1 #pragma once
2 #include <Python.h>
3 #include "blocks/blocks_schematic.hpp"
4 #include "project/project.hpp"
5 #include "pool/project_pool.hpp"
6 
7 extern PyTypeObject SchematicType;
8 
10 public:
14 };
15 
16 typedef struct {
17  PyObject_HEAD
18  /* Type-specific fields go here. */
19  SchematicWrapper *schematic;
20 } PySchematic;
Definition: schematic.hpp:9
Definition: blocks_schematic.hpp:8
Definition: project_pool.hpp:7
Definition: project.hpp:11
Definition: schematic.hpp:16