blob: d940507f347d3f87d6567b2d881da0eaf82e5543 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef STRING_PROC_BUILD_H
#define STRING_PROC_BUILD_H
#include <stdint.h>
#include "stringproc.h"
class StringProcBuild : public StringProc
{
public:
StringProcBuild( Build *pBld );
virtual ~StringProcBuild();
virtual std::string replVars( const std::string &sSrc, const std::string &sCont, VarMap *mExtra );
private:
};
#endif
|