forked from bruderstein/PythonScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReplacementContainer.h
More file actions
27 lines (20 loc) · 595 Bytes
/
ReplacementContainer.h
File metadata and controls
27 lines (20 loc) · 595 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
#ifndef REPLACEMENTCONTAINER_H_2340149124091
#define REPLACEMENTCONTAINER_H_2340149124091
namespace NppPythonScript
{
class ReplaceEntry;
class ScintillaWrapper;
class ReplacementContainer
{
public:
ReplacementContainer(std::list<ReplaceEntry*>* replacements, ScintillaWrapper* scintillaWrapper)
: m_replacements(replacements),
m_scintillaWrapper(scintillaWrapper)
{}
void runReplacements();
private:
std::list<ReplaceEntry*> *m_replacements;
ScintillaWrapper *m_scintillaWrapper;
};
}
#endif // REPLACEMENTCONTAINER_H_2340149124091