Am 06.12.2012 22:48, schrieb Jean-Michel Caricand: > Hello, > > I want to use variables defined in tntnet.xml outside a component. How > to get an instance of tnt :: Config? Is it possible? > > > Thanks, > > Jean-Michel tnt::Config is handled as a singleton. You get a reference to the static instance using:
tnt::TntConfig::it() So if you for example want to get the session timeout, you use: unsigned sessionTimeout = tnt::TntConfig::it().sessionTimeout; TntConfig is a structure, where all settings are stored in public variables. Tommi ------------------------------------------------------------------------------ LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial Remotely access PCs and mobile devices and provide instant support Improve your efficiency, and focus on delivering more value-add services Discover what IT Professionals Know. Rescue delivers http://p.sf.net/sfu/logmein_12329d2d _______________________________________________ Tntnet-general mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/tntnet-general
