Skip to content

Latest commit

 

History

History
23 lines (14 loc) · 287 Bytes

BaseImpl.h

File metadata and controls

23 lines (14 loc) · 287 Bytes
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef JK_BASEIMPL_H_
#define JK_BASEIMPL_H_
#include "zypp/base/NonCopyable.h"
#include "Base.h"
namespace jk
{
class Base::BaseImpl : private zypp::base::NonCopyable
{
public:
BaseImpl();
};
} // ns jk
#endif /*JK_BASEIMPL_H_*/
// vim: set ts=2 sts=2 sw=2 et ai: