|
Katana Plug-in APIs 0.1
|
00001 // Copyright (c) 2014 The Foundry Visionmongers Ltd. All Rights Reserved. 00002 00003 #ifndef KATANAATTRFILEREADER_H 00004 #define KATANAATTRFILEREADER_H 00005 00006 #include "FileReader.h" 00007 #include <iostream> 00008 00009 // An implementation of a FileReader that reads an XML file that follows 00010 // Katana's standard for the attribute XML file format. 00011 class KatanaAttrFileReader : public FileReader 00012 { 00013 public: 00014 00015 AttrData read(std::string filename); 00016 }; 00017 00018 #endif 00019
1.7.3