Design Pattern Examples
Overview of object-oriented design patterns
Proxy_IWorkByProxy.h
Go to the documentation of this file.
1
6
7#pragma once
8#ifndef __PROXY_IWORKBYPROXY_H__
9#define __PROXY_IWORKBYPROXY_H__
10
12
19typedef struct
20{
25 bool (*DoWork)(DynamicString* someArgument);
27
28
29#endif // __PROXY_IWORKBYPROXY_H__
30
Declaration of the DynamicString structure and supporting functions to work with dynamic strings.
Represents a string that can be grown dynamically.
Definition: dynamicstring.h:16
Represents what can be done on the proxy object. This same interface is implemented on the real objec...