libzypp  17.14.0
Application.h
Go to the documentation of this file.
1 /*---------------------------------------------------------------------\
2 | ____ _ __ __ ___ |
3 | |__ / \ / / . \ . \ |
4 | / / \ V /| _/ _/ |
5 | / /__ | | | | | | |
6 | /_____||_| |_| |_| |
7 | |
8 \---------------------------------------------------------------------*/
11 #ifndef ZYPP_APPLICATION_H
12 #define ZYPP_APPLICATION_H
13 
14 #include <iosfwd>
15 
16 #include "zypp/ResObject.h"
17 
19 namespace zypp
20 {
21  DEFINE_PTR_TYPE(Application);
22 
27  class Application : public ResObject
28  {
29  public:
30  typedef Application Self;
34 
35  public:
36  // no attributes defined by now
37 
38  protected:
39  friend Ptr make<Self>( const sat::Solvable & solvable_r );
41  Application( const sat::Solvable & solvable_r );
43  virtual ~Application();
44  };
45 
46 } // namespace zypp
48 #endif // ZYPP_APPLICATION_H