14 lines
172 B
C++
14 lines
172 B
C++
|
#include <iostream>
|
||
|
#include "ProxyPattern.h"
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
Subject *subject;
|
||
|
subject = new Proxy();
|
||
|
subject->method();
|
||
|
|
||
|
printf("\n\n");
|
||
|
|
||
|
system("pause");
|
||
|
return 0;
|
||
|
}
|