MCPcopy Create free account
hub / github.com/Apress/design-patterns-in-modern-cpp / Property

Method Property

Structural/Proxy/proxy.cpp:166–169  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

164{
165 T value;
166 Property(const T initialValue)
167 {
168 *this = initialValue;
169 }
170 operator T()
171 {
172 return value;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected