DesignPattern/13.ProxyPattern/2.Code/main.cpp

14 lines
172 B
C++
Raw Normal View History

2019-10-29 14:14:19 +00:00
#include <iostream>
#include "ProxyPattern.h"
int main()
{
Subject *subject;
subject = new Proxy();
subject->method();
printf("\n\n");
system("pause");
return 0;
}