mirror of
https://github.com/JakubVojvoda/design-patterns-cpp.git
synced 2025-12-18 21:34:36 +03:00
8 lines
218 B
Markdown
8 lines
218 B
Markdown
## Proxy
|
|
|
|
Provide a surrogate or placeholder for another object to control access to it.
|
|
|
|
### When to use
|
|
|
|
* whenever there is a need for a more versatile or sophisticated reference to an object than a simple pointer
|