1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
#ifndef STRING_PROC_H #define STRING_PROC_H #include <stdint.h> #include <string> class Build; class StringProc { public: StringProc( Build *pBld ); virtual ~StringProc(); virtual std::string replVars( const std::string &sSrc, const std::string &sCont )=0; protected: Build *getBuild() { return pBld; } private: Build *pBld; }; #endif