Horizon
cores.hpp
1 #pragma once
2 
3 namespace horizon {
4 
13 class Cores {
14 public:
15  Cores(class Core *co);
16  Core *r;
17  class CoreSchematic *c;
18  class CoreSymbol *y;
19  class CorePadstack *a;
20  class CorePackage *k;
21  class CoreBoard *b;
22  class CoreFrame *f;
23 };
24 } // namespace horizon
horizon::Cores
Tools use this class to actually access the core.
Definition: cores.hpp:13
horizon::CoreBoard
Definition: core_board.hpp:11
horizon::CoreSchematic
Definition: core_schematic.hpp:11
horizon::CoreFrame
Definition: core_frame.hpp:9
horizon::CorePadstack
Definition: core_padstack.hpp:11
horizon::Core
Where Tools and and documents meet.
Definition: core.hpp:240
horizon::CorePackage
Definition: core_package.hpp:11
horizon::CoreSymbol
Definition: core_symbol.hpp:10