views:

174

answers:

2

Link to source code of Loki Pimpl header. I am not able to find any documentation on how to use the same, can any one explain how to use. And what does the following function in the header do.

  1. PimplOwner
  2. ImplOf
  3. PimplOf
  4. RimplOf
A: 

This page has most of the information you need

Manuel
Thanks Manuel.....
Passionate programmer
A: 

Loki是短小的智能指针(Smart Point).我用Loki::Pimpl定义智能指针如下: Loki::Pimpl > smartPoint; 你可以按这种用法试一下。

gaobo
It's all clear now.
alxx