-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathReplacer.cpp
More file actions
25 lines (16 loc) · 484 Bytes
/
Replacer.cpp
File metadata and controls
25 lines (16 loc) · 484 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
#include "stdafx.h"
#ifndef REPLACER_H_DGB_20131120
#define REPLACER_H_DGB_20131120
#include "Replacer.h"
#include "ReplaceEntry.h"
#include "UTF8Iterator.h"
#include "ConstString.h"
#include "UtfConversion.h"
#include "Match.h"
namespace NppPythonScript
{
using UtfConversion::toStringType;
typedef boost::basic_regex<U32, u32_regex_traits> u32_regex;
typedef boost::regex_iterator<UTF8Iterator, U32, u32_regex_traits> u32_regex_iterator;
}
#endif