compiles, backup checkin
[platform/upstream/libzypp.git] / zypp / solver / detail / ProblemSolutionIgnore.h
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 4 -*- */
2 /* Resolver_problems.cc
3  *
4  * Copyright (C) 2000-2002 Ximian, Inc.
5  * Copyright (C) 2005 SUSE Linux Products GmbH
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License,
9  * version 2, as published by the Free Software Foundation.
10  *
11  * This program is distributed in the hope that it will be useful, but
12  * WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19  * 02111-1307, USA.
20  */
21
22 #ifndef ZYPP_SOLVER_DETAIL_PROBLEMSOLUTIONIGNORE_H
23 #define ZYPP_SOLVER_DETAIL_PROBLEMSOLUTIONIGNORE_H
24
25 #include "zypp/solver/detail/Types.h"
26
27 #include "zypp/solver/detail/Resolver.h"
28 #include "zypp/solver/detail/ProblemSolution.h"
29
30
31 /////////////////////////////////////////////////////////////////////////
32 namespace zypp
33 { ///////////////////////////////////////////////////////////////////////
34   ///////////////////////////////////////////////////////////////////////
35   namespace solver
36   { /////////////////////////////////////////////////////////////////////
37     /////////////////////////////////////////////////////////////////////
38     namespace detail
39     { ///////////////////////////////////////////////////////////////////
40
41         /**
42          * Class representing one possible solution to one problem found during resolving
43          * This problem solution ignores one or more items
44          * 
45          **/
46         class ProblemSolutionIgnore : public ProblemSolution
47         {
48         public:
49
50             /**
51              * Constructor.
52              **/
53             ProblemSolutionIgnore( ResolverProblem_Ptr parent,
54                                    const Dep &dep,
55                                    PoolItem *item,
56                                    const Capability & capability);
57         };
58
59       ///////////////////////////////////////////////////////////////////
60     };// namespace detail
61     /////////////////////////////////////////////////////////////////////
62     /////////////////////////////////////////////////////////////////////
63   };// namespace solver
64   ///////////////////////////////////////////////////////////////////////
65   ///////////////////////////////////////////////////////////////////////
66 };// namespace zypp
67 /////////////////////////////////////////////////////////////////////////
68
69 #endif // ZYPP_SOLVER_DETAIL_PROBLEMSOLUTIONIGNORE_H
70