Design Pattern Examples
Overview of object-oriented design patterns
Proxy_ProxyService.h
Go to the documentation of this file.
1
5
6#pragma once
7#ifndef __PROXY_PROXYSERVICE_H__
8#define __PROXY_PROXYSERVICE_H__
9
10#include "Proxy_IWorkByProxy.h"
11
20
21#endif // __PROXY_PROXYSERVICE_H__
Declaration of the IWorkByProxy structure, which represents both the real service and the proxy servi...
IWorkByProxy * GetProxyService(void)
Obtain the proxy service.
Represents what can be done on the proxy object. This same interface is implemented on the real objec...