|
solarpowerlog trunk
|
00001 /* 00002 * CFormatterSearchCSVEntry.h 00003 * 00004 * Created on: Jan 5, 2010 00005 * Author: tobi 00006 */ 00007 00008 #ifndef CFORMATTERSEARCHCSVENTRY_H_ 00009 #define CFORMATTERSEARCHCSVENTRY_H_ 00010 00011 #include "DataFilters/HTMLWriter/formatter/IFormater.h" 00012 00013 class CFormatterSearchCSVEntry: public IFormater 00014 { 00015 00016 public: 00017 virtual ~CFormatterSearchCSVEntry(); 00018 00019 virtual bool Format(const std::string &what, std::string &store, 00020 const std::vector<std::string> ¶meters); 00021 00022 protected: 00023 // make the factory class my friend to instanciate the object. 00024 friend class IFormater; 00025 CFormatterSearchCSVEntry(); 00026 00027 }; 00028 00029 #endif /* CFORMATTERSEARCHCSVENTRY_H_ */