Removed the 'Res' from 'Res{Arch,Edition}' (files and classes)
[platform/upstream/libzypp.git] / zypp / Arch.h
1 /*---------------------------------------------------------------------\
2 |                          ____ _   __ __ ___                          |
3 |                         |__  / \ / / . \ . \                         |
4 |                           / / \ V /|  _/  _/                         |
5 |                          / /__ | | | | | |                           |
6 |                         /_____||_| |_| |_|                           |
7 |                                                                      |
8 \---------------------------------------------------------------------*/
9 /** \file zypp/Arch.h
10  *
11 */
12 #ifndef ZYPP_ARCH_H
13 #define ZYPP_ARCH_H
14
15 #include <iosfwd>
16
17 #include "zypp/base/StringVal.h"
18
19 ///////////////////////////////////////////////////////////////////
20 namespace zypp
21 { /////////////////////////////////////////////////////////////////
22
23   ///////////////////////////////////////////////////////////////////
24   //
25   //    CLASS NAME : Arch
26   //
27   /** */
28   class Arch : public base::StringVal
29   {
30   public:
31     /** Default ctor */
32     Arch();
33     /** */
34     explicit
35     Arch( const std::string & rhs );
36     /** */
37     Arch( const Arch & rhs );
38     /** Dtor */
39     ~Arch();
40   };
41   ///////////////////////////////////////////////////////////////////
42
43   /////////////////////////////////////////////////////////////////
44 } // namespace zypp
45 ///////////////////////////////////////////////////////////////////
46 #endif // ZYPP_ARCH_H