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