Put the readers and writers in charles namespace

This commit is contained in:
Eryn Wells 2014-08-09 20:46:14 -07:00
parent 84cb27fa6f
commit 3a8c955796
4 changed files with 29 additions and 20 deletions

View file

@ -11,7 +11,9 @@
#include <string>
class Scene;
namespace charles {
struct Scene;
class Writer
@ -24,4 +26,6 @@ public:
virtual int write_scene(const Scene &scene, const std::string &filename) = 0;
};
} /* namespace charles */
#endif