Cupt
fwd.hpp
1 /**************************************************************************
2 * Copyright (C) 2010-2015 by Eugene V. Lyubimkin *
3 * *
4 * This program is free software; you can redistribute it and/or modify *
5 * it under the terms of the GNU General Public License *
6 * (version 3 or above) as published by the Free Software Foundation. *
7 * *
8 * This program is distributed in the hope that it will be useful, *
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
11 * GNU General Public License for more details. *
12 * *
13 * You should have received a copy of the GNU GPL *
14 * along with this program; if not, write to the *
15 * Free Software Foundation, Inc., *
16 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA *
17 **************************************************************************/
18 #ifndef CUPT_FWD_SEEN
19 #define CUPT_FWD_SEEN
20 
21 namespace cupt {
22 
23 class Config;
24 class Cache;
25 class File;
26 class RequiredFile;
27 class Pipe;
28 class HashSums;
29 
30 namespace cache {
31 
32 class Package;
33 class BinaryPackage;
34 class SourcePackage;
35 struct Version;
36 struct BinaryVersion;
37 struct SourceVersion;
38 struct ReleaseInfo;
39 
40 struct Relation;
41 struct ArchitecturedRelation;
42 struct RelationExpression;
43 struct ArchitecturedRelationExpression;
44 
45 }
46 
47 namespace download {
48 
49 class Manager;
50 class Method;
51 class Uri;
52 class Progress;
53 class ConsoleProgress;
54 
55 }
56 
57 namespace system {
58 
59 class State;
60 class Resolver;
61 class NativeResolver;
62 class Worker;
63 class Snapshots;
64 
65 }
66 
67 }
68 
69 #endif
70