COOPY » Guide
version 0.6.5
|
00001 #ifndef COOPY_GNUMERICTEXTBOOKFACTORY 00002 #define COOPY_GNUMERICTEXTBOOKFACTORY 00003 00004 #include <coopy/GnumericTextBook.h> 00005 #include <coopy/TextBookFactory.h> 00006 00007 namespace coopy { 00008 namespace store { 00009 namespace gnumeric { 00010 class GnumericTextBookFactory; 00011 } 00012 } 00013 } 00014 00015 class coopy::store::gnumeric::GnumericTextBookFactory : public TextBookFactory { 00016 public: 00017 virtual std::string getName() { 00018 return "gnumeric"; 00019 } 00020 00021 virtual TextBook *open(AttachConfig& config, AttachReport& report); 00022 }; 00023 00024 #endif