View Single Post
  #15  
Old 10-17-2004, 08:48 AM
Cisyouc
Demi-God
 
Join Date: Jun 2004
Location: Heaven.
Posts: 1,260
Default

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.