Horizon
horizon-eda-1.3.0
src
python_module
pool.hpp
1
#pragma once
2
#include <Python.h>
3
4
namespace
horizon {
5
class
Pool;
6
}
7
8
extern
PyTypeObject PoolType;
9
10
typedef
struct
{
11
PyObject_HEAD
12
/* Type-specific fields go here. */
13
horizon::Pool
*pool;
14
}
PyPool
;
15
16
void
PoolType_init();
PyPool
Definition:
pool.hpp:10
horizon::Pool
Stores objects (Unit, Entity, Symbol, Part, etc.) from the pool.
Definition:
pool.hpp:23
Generated by
1.8.20