Cupt
fwd.hpp
1 /**************************************************************************
2 * Copyright (C) 2010 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 Pipe;
27 class HashSums;
28 
29 namespace cache {
30 
31 class Package;
32 class BinaryPackage;
33 class SourcePackage;
34 class Version;
35 class BinaryVersion;
36 class SourceVersion;
37 class ReleaseInfo;
38 
39 class Relation;
40 class ArchitecturedRelation;
41 class RelationExpression;
42 class ArchitecturedRelationExpression;
43 
44 }
45 
46 namespace download {
47 
48 class Manager;
49 class Method;
50 class Uri;
51 class Progress;
52 class ConsoleProgress;
53 
54 }
55 
56 namespace system {
57 
58 class State;
59 class Resolver;
60 class NativeResolver;
61 class Worker;
62 class Snapshots;
63 
64 }
65 
66 }
67 
68 #endif
69