libzypp  17.35.8
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 
28  {
29  public:
30  using Self = Application;
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  ~Application() override;
44  };
45 
46 } // namespace zypp
48 #endif // ZYPP_APPLICATION_H
A Solvable object within the sat Pool.
Definition: Solvable.h:53
TraitsType::PtrType Ptr
Definition: Application.h:32
ResTraits.
Definition: ResTraits.h:79
intrusive_ptr< const TRes > constPtrType
Definition: ResTraits.h:83
const Arch Arch_armv7hnl Arch_armv7nhl ZYPP_API
Definition: ResTraits.h:93
DEFINE_PTR_TYPE(Application)
Base for resolvable objects.
Definition: ResObject.h:37
intrusive_ptr< TRes > PtrType
Definition: ResTraits.h:82
TraitsType::constPtrType constPtr
Definition: Application.h:33
Easy-to use interface to the ZYPP dependency resolver.
Definition: Application.cc:19
Class representing an application (appdata.xml)
Definition: Application.h:27