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
7extern PyTypeObject SchematicType;
8
10public:
14};
15
16typedef struct {
17 PyObject_HEAD
18 /* Type-specific fields go here. */
19 SchematicWrapper *schematic;
Definition: schematic.hpp:9
Definition: blocks_schematic.hpp:8
Definition: project_pool.hpp:7
Definition: project.hpp:11
Definition: schematic.hpp:16