Gwork: 0.3.0Dev
Gwk::UserDataStorage Class Reference

#include <UserData.h>

Public Member Functions

template<typename T >
void Set (const Gwk::String &str, const T &var)
 
bool Exists (const Gwk::String &str) const
 
template<typename T >
T & Get (const Gwk::String &str)
 

Detailed Description

Allows you to store multiple and various user data

//
// Valid
//
UserDataStorage.Set( 100.0f );
UserDataStorage.<float>Get();
//
// Invalid - didn't Add a float type!
//
UserDataStorage.Set( 100 );
UserDataStorage.<float>Get();
//
// You can pass structs as long as they can be copied safely.
//
UserDataStorage.Set( mystruct );
UserDataStorage.<MyStruct>Get();
//
// If you pass a pointer then whatever it's pointing to
// should be valid for the duration. And it won't be freed.
//
UserDataStorage.Set( &mystruct );
UserDataStorage.<MyStruct*>Get();

The documentation for this class was generated from the following file: