|
MyGUI
3.2.1
|
#include <MyGUI_DataManager.h>
Inheritance diagram for MyGUI::DataManager:Public Member Functions | |
| virtual IDataStream * | getData (const std::string &_name)=0 |
| virtual void | freeData (IDataStream *_data)=0 |
| virtual bool | isDataExist (const std::string &_name)=0 |
| virtual const VectorString & | getDataListNames (const std::string &_pattern)=0 |
| virtual const std::string & | getDataPath (const std::string &_name)=0 |
Definition at line 18 of file MyGUI_DataManager.h.
| virtual void MyGUI::DataManager::freeData | ( | IDataStream * | _data | ) | [pure virtual] |
Free data stream.
| _data | Data stream. |
| virtual IDataStream* MyGUI::DataManager::getData | ( | const std::string & | _name | ) | [pure virtual] |
Get data stream from specified resource name.
| _name | Resource name (usually file name). |
| virtual const VectorString& MyGUI::DataManager::getDataListNames | ( | const std::string & | _pattern | ) | [pure virtual] |
Get all data names with names that matches pattern.
| _pattern | Pattern to match (for example "*.layout"). |
| virtual const std::string& MyGUI::DataManager::getDataPath | ( | const std::string & | _name | ) | [pure virtual] |
Get full path to data.
| _name | Resource name. |
| virtual bool MyGUI::DataManager::isDataExist | ( | const std::string & | _name | ) | [pure virtual] |
Is data with specified name exist.
| _name | Resource name. |
1.7.6.1