sbuild  1.6.4
sbuild-keyfile-base.h
1 /* Copyright © 2005-2008 Roger Leigh <rleigh@debian.org>
2  *
3  * schroot is free software: you can redistribute it and/or modify it
4  * under the terms of the GNU General Public License as published by
5  * the Free Software Foundation, either version 3 of the License, or
6  * (at your option) any later version.
7  *
8  * schroot is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11  * General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program. If not, see
15  * <http://www.gnu.org/licenses/>.
16  *
17  *********************************************************************/
18 
19 #ifndef SBUILD_KEYFILE_BASE_H
20 #define SBUILD_KEYFILE_BASE_H
21 
22 #include <sbuild/sbuild-i18n.h>
23 #include <sbuild/sbuild-log.h>
24 #include <sbuild/sbuild-parse-error.h>
25 #include <sbuild/sbuild-parse-value.h>
26 #include <sbuild/sbuild-types.h>
27 #include <sbuild/sbuild-tr1types.h>
28 #include <sbuild/sbuild-util.h>
29 
30 #include <cassert>
31 #include <map>
32 #include <string>
33 #include <sstream>
34 
35 #include <boost/format.hpp>
36 
37 namespace sbuild
38 {
39 
44  {
45  public:
47  enum priority
48  {
54  };
55 
58  {
80  };
81 
84 
86  keyfile_base ();
87 
89  virtual ~keyfile_base ();
90 
91  };
92 
93 }
94 
95 #endif /* SBUILD_KEYFILE_BASE_H */
96 
97 /*
98  * Local Variables:
99  * mode:C++
100  * End:
101  */