Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 328 Bytes

Derived.h

File metadata and controls

26 lines (17 loc) · 328 Bytes
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#ifndef JK_DERIVED_H_
#define JK_DERIVED_H_
#include "zypp/base/PtrTypes.h"
#include "Base.h"
namespace jk
{
class Derived : public Base
{
public:
Derived();
~Derived();
private:
class Impl;
zypp::RW_pointer<Impl,zypp::rw_pointer::Scoped<Impl> > _pimpl;
};
} // ns jk
#endif /*JK_DERIVED_H_*/