Esempio n. 1
0
 Resource* capture(const char* path)
 {
   //globalOutputStream() << "capture: \"" << path << "\"\n";
   return m_references.capture(CopiedString(path)).get();
 }
Esempio n. 2
0
 void release(const char* path)
 {
   m_references.release(CopiedString(path));
   //globalOutputStream() << "release: \"" << path << "\"\n";
 }
Esempio n. 3
0
 void clear()
 {
   m_references.clear();
 }
Esempio n. 4
0
 iterator end()
 {
   return m_references.end();
 }
Esempio n. 5
0
 iterator begin()
 {
   return m_references.begin();
 }
Esempio n. 6
0
 void release (const std::string& path)
 {
     m_references.release(path);
     g_debug("release: \"%s\"\n", path.c_str());
 }
Esempio n. 7
0
 Resource* capture (const std::string& path)
 {
     g_debug("capture: \"%s\"\n", path.c_str());
     return m_references.capture(path).get();
 }