]> Dogcows Code - chaz/yoink/blobdiff - src/Moof/Resource.hh
port to NetBSD
[chaz/yoink] / src / Moof / Resource.hh
index f7d17824dc2c6d162cd8ff4c3ddb2d3a1971950d..39b76a4c62f60c69a11474359565b7b59e3bcc9f 100644 (file)
@@ -34,7 +34,6 @@
  * Interface for textures, sounds, and other types of resources.
  */
 
-#include <stdexcept>
 #include <string>
 #include <vector>
 
@@ -49,13 +48,8 @@ namespace Mf {
 class Resource
 {
 public:
-       struct Exception : public std::runtime_error
-       {
-               explicit Exception(const std::string& what_arg) :
-                       std::runtime_error(what_arg) {}
-       };
 
-       virtual ~Resource();
+       virtual ~Resource() {}
 
 
        /**
@@ -75,6 +69,7 @@ public:
        static std::string getPath(const std::string& name);
 
 private:
+
        static std::vector<std::string> searchPaths_;
 };
 
This page took 0.019255 seconds and 4 git commands to generate.