00001 /* 00002 File: Readers.h 00003 00004 Function: Support for reading in various scene file formats 00005 00006 Author: Andrew Willmott 00007 00008 Copyright: (c) 1998-2000, Andrew Willmott 00009 */ 00010 00011 #ifndef __Readers__ 00012 #define __Readers__ 00013 00014 #include "gcl/Scene.h" 00015 #include "cl/FileName.h" 00016 00017 class SceneReader 00019 { 00020 public: 00021 00022 static scScenePtr Load(FileName &sceneFile); 00024 static Void PrintSupportedFormats(ostream &s); 00026 }; 00027 00028 #endif