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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
/* vim: set sw=4 sts=4 et foldmethod=syntax : */
/*
* Copyright (c) 2007, 2008 Ciaran McCreesh
*
* This file is part of the Paludis package manager. Paludis is free software;
* you can redistribute it and/or modify it under the terms of the GNU General
* Public License version 2, as published by the Free Software Foundation.
*
* Paludis is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along with
* this program; if not, write to the Free Software Foundation, Inc., 59 Temple
* Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef PALUDIS_GUARD_PALUDIS_ACTION_FWD_HH
#define PALUDIS_GUARD_PALUDIS_ACTION_FWD_HH 1
#include <iosfwd>
#include <paludis/util/attributes.hh>
#include <paludis/util/kc-fwd.hh>
#include <paludis/util/keys.hh>
#include <paludis/util/tr1_memory.hh>
#include <paludis/repository-fwd.hh>
/** \file
* Forward declarations for paludis/action.hh .
*
* \ingroup g_actions
*/
namespace paludis
{
class Action;
class InstallAction;
class InstalledAction;
class UninstallAction;
class PretendAction;
class ConfigAction;
class FetchAction;
class InfoAction;
class SupportsActionTestBase;
template <typename A_> class SupportsActionTest;
class ActionVisitorTypes;
class SupportsActionTestVisitorTypes;
class ActionError;
class UnsupportedActionError;
class InstallActionError;
class FetchActionError;
class UninstallActionError;
class ConfigActionError;
class InfoActionError;
#include <paludis/action-se.hh>
/**
* Options for a FetchAction.
*
* \see FetchAction
* \ingroup g_actions
* \since 0.26
*/
typedef kc::KeyedClass<
kc::Field<k::fetch_unneeded, bool>,
kc::Field<k::safe_resume, bool>
> FetchActionOptions;
/**
* Options for an InstallAction.
*
* \see InstallAction
* \ingroup g_actions
* \since 0.26
*/
typedef kc::KeyedClass<
kc::Field<k::no_config_protect, bool>,
kc::Field<k::debug_build, InstallActionDebugOption>,
kc::Field<k::checks, InstallActionChecksOption>,
kc::Field<k::destination, tr1::shared_ptr<Repository> >
> InstallActionOptions;
/**
* Options for an UninstallAction.
*
* \see UninstallAction
* \ingroup g_actions
* \since 0.26
*/
typedef kc::KeyedClass<
kc::Field<k::no_config_protect, bool>
> UninstallActionOptions;
/**
* A failed fetch action part.
*
* \see FetchActionError
* \ingroup g_actions
* \since 0.26
*/
typedef kc::KeyedClass<
kc::Field<k::target_file, std::string>,
kc::Field<k::requires_manual_fetching, bool>,
kc::Field<k::failed_automatic_fetching, bool>,
kc::Field<k::failed_integrity_checks, std::string>
> FetchActionFailure;
}
#endif
|