forked from panda3d/panda3d
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsedProcess.h
More file actions
30 lines (23 loc) · 669 Bytes
/
sedProcess.h
File metadata and controls
30 lines (23 loc) · 669 Bytes
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
29
30
// Filename: sedProcess.h
// Created by: drose (24Oct00)
//
////////////////////////////////////////////////////////////////////
#ifndef SEDPROCESS_H
#define SEDPROCESS_H
#include "ppremake.h"
#include "sedScript.h"
///////////////////////////////////////////////////////////////////
// Class : SedProcess
// Description : This supervises the whole sed process, from beginning
// to end.
////////////////////////////////////////////////////////////////////
class SedProcess {
public:
SedProcess();
~SedProcess();
bool add_script_line(const string &line);
void run(istream &in, ostream &out);
private:
SedScript _script;
};
#endif