forked from dlidstrom/ntest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFwd.h
48 lines (44 loc) · 1.17 KB
/
Fwd.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// $Id$
// Copyright Daniel Lidstrom
// All Rights Reserved
// This file is distributed subject to GNU GPL version 2. See the files
// Copying.txt and GPL.txt for details.
//! @file
//! Brief.
//! @author Daniel Lidstrom <[email protected]>
//! @date 2009-11-30 17:25
//! @ingroup
//!
#if !defined(FWD_H__20091130T1725)
#define FWD_H__20091130T1725
#include <memory> // shared_ptr
#include <vector>
class CBook;
typedef std::shared_ptr<CBook> CBookPtr;
class CBookData;
class CBoni;
class CCache;
class CCalcParams;
typedef std::shared_ptr<CCalcParams> CCalcParamsPtr;
class CCalcParamsFixedHeight;
typedef std::shared_ptr<CCalcParamsFixedHeight> CCalcParamsFixedHeightPtr;
class CComputerDefaults;
class CEvaluator;
class CGame;
class CMove;
class CMoves;
class CMoveValue;
class CMPCStats;
class CMVK;
class COsGame;
class CPlayer;
typedef std::shared_ptr<CPlayer> CPlayerPtr;
class CPlayerComputer;
typedef std::shared_ptr<CPlayerComputer> CPlayerComputerPtr;
class CQPosition;
class CSavedGame;
class CSearchInfo;
struct CWindow;
struct Variation;
typedef std::vector<Variation> VariationCollection;
#endif