forked from andreasfertig/cppinsights
-
Notifications
You must be signed in to change notification settings - Fork 0
/
InsightsBase.h
49 lines (41 loc) · 1.2 KB
/
InsightsBase.h
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/******************************************************************************
*
* C++ Insights, copyright (C) by Andreas Fertig
* Distributed under an MIT license. See LICENSE for details
*
****************************************************************************/
#ifndef INSIGHTS_BASE_H
#define INSIGHTS_BASE_H
//-----------------------------------------------------------------------------
#include <stdint.h> // for intptr_t
#include <unordered_map> // for unordered_map
namespace clang {
class Rewriter;
}
namespace clang {
class SourceLocation;
}
namespace clang {
namespace insights {
class OutputFormatHelper;
}
} // namespace clang
//-----------------------------------------------------------------------------
namespace clang::insights {
class InsightsBase
{
protected:
Rewriter& mRewrite;
explicit InsightsBase(Rewriter& rewriter)
: mRewrite{rewriter}
, mMap{}
{
}
protected:
void InsertIndentedText(SourceLocation loc, OutputFormatHelper& outputFormatHelper);
private:
std::unordered_map<intptr_t, bool> mMap;
};
//-----------------------------------------------------------------------------
} // namespace clang::insights
#endif /* INSIGHTS_BASE_H */