- Create the cache directly from the schema (installed) file.
[platform/upstream/libzypp.git] / zypp / Atom.cc
1 /*---------------------------------------------------------------------\
2 |                          ____ _   __ __ ___                          |
3 |                         |__  / \ / / . \ . \                         |
4 |                           / / \ V /|  _/  _/                         |
5 |                          / /__ | | | | | |                           |
6 |                         /_____||_| |_| |_|                           |
7 |                                                                      |
8 \---------------------------------------------------------------------*/
9 /** \file zypp/Atom.cc
10  *
11 */
12 #include "zypp/Atom.h"
13
14 using namespace std;
15
16 ///////////////////////////////////////////////////////////////////
17 namespace zypp
18 { /////////////////////////////////////////////////////////////////
19
20   ///////////////////////////////////////////////////////////////////
21   //
22   //    METHOD NAME : Atom::Atom
23   //    METHOD TYPE : Ctor
24   //
25   Atom::Atom( const NVRAD & nvrad_r )
26   : ResObject( TraitsType::kind, nvrad_r )
27   {}
28
29   ///////////////////////////////////////////////////////////////////
30   //
31   //    METHOD NAME : Atom::~Atom
32   //    METHOD TYPE : Dtor
33   //
34   Atom::~Atom()
35   {}
36
37   /////////////////////////////////////////////////////////////////
38 } // namespace zypp
39 ///////////////////////////////////////////////////////////////////