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 RequiredFile;
27 class Pipe;
28 class HashSums;
29 
30 namespace cache {
31 
32 class Package;
33 class BinaryPackage;
34 class SourcePackage;
35 class Version;
36 class BinaryVersion;
37 class SourceVersion;
38 class ReleaseInfo;
39 
40 class Relation;
41 class ArchitecturedRelation;
42 class RelationExpression;
43 class 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 
various snapshot-related routines
Definition: snapshots.hpp:37
stores an additional information for installed packages
Definition: state.hpp:39
Definition: binarypackage.hpp:26
performs system modifications
Definition: worker.hpp:40
library's problem resolver implementation
Definition: native.hpp:37
dependency problems resolver
Definition: resolver.hpp:42