Design Pattern Examples
Overview of object-oriented design patterns
Proxy_RealService.h
Go to the documentation of this file.
1
5
6#pragma once
7#ifndef __PROXY_REALSERVICE_H__
8#define __PROXY_REALSERVICE_H__
9
10#include "Proxy_IWorkByProxy.h"
11
17
18
19#endif // __PROXY_REALSERVICE_H__
Declaration of the IWorkByProxy structure, which represents both the real service and the proxy servi...
IWorkByProxy * GetRealService(void)
Return a pointer to the real service expressed as an IWorkByProxy service.
Represents what can be done on the proxy object. This same interface is implemented on the real objec...