blob: 146f74aa58ebf7803fd9de2be4f97f7c3e2d45c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#pragma once
// GlobalStates.hpp
class GlobalStates;
// Items.hpp
template <class T>
class ItemList;
template <class TSelf>
class ItemBase;
class ProductItem;
class FactoryItem;
class CustomerItem;
// Project.hpp
class Project;
|