blob: 2d8d2ec5984625311e9c3d17795c2306498af12b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#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;
// TransactionDatabase.hpp
class TransactionDatabase;
|