The real class object that does all the work. More...
Public Member Functions | |
std::string | DoWork (std::string someArgument) |
Does some work on the given argument and returns a new std::string. | |
Public Member Functions inherited from IWorkByProxy | |
virtual | ~IWorkByProxy () |
virtual std::string | DoWork (std::string someArgument)=0 |
Does some work on the given argument and returns a new std::string. | |
The real class object that does all the work.
This would normally be a very expensive class to instantiate and/or be running on the server end of a remoting channel. For demonstration purposes, imagine this class takes many seconds to instantiate.
Definition at line 35 of file Proxy_Class.cpp.
|
inlinevirtual |
Does some work on the given argument and returns a new std::string.
someArgument | A string to be worked on. |
Implements IWorkByProxy.
Definition at line 41 of file Proxy_Class.cpp.
References Helpers::formatstring().