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

12 lines
88 B
C++

#include "pimplTime.h"
struct X::XImpl {
C c;
D d;
}
int main() {
X x;
}