Minilogin is designed for LAN-login only. Thus, you can make your computers on a static local IP. If its just you, you can use 127.0.0.1
__________________
namespace retval { template <class T> class ReturnValueGen { private: T x; public: ReturnValueGen() { x = 0; }; T& Generator() { return x; }; }; } int main() { retval::ReturnValueGen<int> retvalue; return retvalue.Generator(); }
C++ is wonderful.
|