aboutsummaryrefslogtreecommitdiff
path: root/src/stringprocbuild.h
blob: f3cf3b45a48ea9a73b9d04ee2de8c4243f674a96 (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 StringList *pCont, VarMap *mExtra );

private:

};

#endif