blob: 526f788acff0bbe49d46ba33d0c139729e3ac1b4 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#pragma once
#ifndef PIMPL_H_TV7E3C9K
#define PIMPL_H_TV7E3C9K
//! \brief Declares a pimpl pointer.
#define RPCLIB_DECLARE_PIMPL() \
struct impl; std::unique_ptr<impl> pimpl;
#endif /* end of include guard: PIMPL_H_TV7E3C9K */
|