CPlusPlusThings/codingStyleIdioms/5_pImpl/pimplTime.h
Light-City 4f149eec72 update
2019-12-12 16:09:55 +08:00

20 lines
194 B
C++

#include <iostream>
#include <vector>
using namespace std;
class C {
vector<int> v;
string s;
};
class D {
string s;
};
class X {
private:
struct XImpl;
XImpl* pImpl;
};