]> Dogcows Code - chaz/yoink/blobdiff - src/Moof/Scene.hh
extreme refactoring
[chaz/yoink] / src / Moof / Scene.hh
similarity index 84%
rename from src/scene.hh
rename to src/Moof/Scene.hh
index 2938db88e1525583f6e7df86deff898715caa6f7..66a54a97936c22c543203780b9a110cb076c9261 100644 (file)
 
 *******************************************************************************/
 
-#ifndef _SCENE_HH_
-#define _SCENE_HH_
+#ifndef _MOOF_SCENE_HH_
+#define _MOOF_SCENE_HH_
 
 #include <string>
+
 #include <boost/shared_ptr.hpp>
 
-#include "resource.hh"
-#include "drawable.hh"
+#include <Moof/Drawable.hh>
+#include <Moof/Resource.hh>
 
 
-namespace dc {
+namespace Mf {
 
 
-class scene : public resource, public drawable
+class Scene : public Resource, public Drawable
 {
 public:
-       scene(const std::string& name);
+       Scene(const std::string& name);
 
-       void draw(scalar alpha);
+       void draw(Scalar alpha);
 
        static std::string getPathToResource(const std::string& name);
 
 private:
-       class scene_impl;
-       boost::shared_ptr<scene_impl> impl;
+       class SceneImpl;
+       boost::shared_ptr<SceneImpl> impl_;
 };
 
 
-} // namespace dc
+} // namespace Mf
 
-#endif // _SCENE_HH_
+#endif // _MOOF_SCENE_HH_
 
 /** vim: set ts=4 sw=4 tw=80: *************************************************/
 
This page took 0.019554 seconds and 4 git commands to generate.