blob: 13dd4f60ec95dc085af0e5a8923ae12fac4b8b5b (
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 );
private:
};
#endif
|