예제 #1
0
파일: main.cpp 프로젝트: CCJY/coliru
int main()
{
    Proxy<Item> item;
    item->foo();
    item->bar();
    
    Proxy<WithMutex<std::string>> safe;
    safe->empty();
}