reader.hh
Fix up includes, put it in charles namespace
This commit is contained in:
parent
080ee0d580
commit
161a635ab5
1 changed files with 8 additions and 5 deletions
|
@ -2,17 +2,18 @@
|
|||
* vim: set tw=80:
|
||||
* Eryn Wells <eryn@erynwells.me>
|
||||
*/
|
||||
/**
|
||||
* Interface for an input file reader.
|
||||
*/
|
||||
|
||||
|
||||
#ifndef __READER_HH__
|
||||
#define __READER_HH__
|
||||
|
||||
#include "scene.h"
|
||||
#include "scene.hh"
|
||||
|
||||
|
||||
namespace charles {
|
||||
|
||||
/**
|
||||
* Interface for an input file reader.
|
||||
*/
|
||||
struct Reader
|
||||
{
|
||||
Reader(Scene& scene)
|
||||
|
@ -29,4 +30,6 @@ protected:
|
|||
Scene& mScene;
|
||||
};
|
||||
|
||||
} /* namespace charles */
|
||||
|
||||
#endif /* __READER_HH__ */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue