forked from vgvassilev/creduce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ReplaceClassWithBaseTemplateSpec.h
65 lines (45 loc) · 1.73 KB
/
ReplaceClassWithBaseTemplateSpec.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
//===----------------------------------------------------------------------===//
//
// Copyright (c) 2012, 2013 The University of Utah
// All rights reserved.
//
// This file is distributed under the University of Illinois Open Source
// License. See the file COPYING for details.
//
//===----------------------------------------------------------------------===//
#ifndef REPLACE_CLASS_WITH_BASE_TEMPLATE_SPEC_H
#define REPLACE_CLASS_WITH_BASE_TEMPLATE_SPEC_H
#include "Transformation.h"
namespace clang {
class DeclGroupRef;
class ASTContext;
}
class ReplaceClassWithBaseTemplateSpecVisitor;
class ReplaceClassWithBaseTemplateSpecRewriteVisitor;
class ReplaceClassWithBaseTemplateSpec : public Transformation {
friend class ReplaceClassWithBaseTemplateSpecVisitor;
friend class ReplaceClassWithBaseTemplateSpecRewriteVisitor;
public:
ReplaceClassWithBaseTemplateSpec(const char *TransName, const char *Desc)
: Transformation(TransName, Desc),
CollectionVisitor(NULL),
RewriteVisitor(NULL),
TheCXXRecord(NULL),
TheBaseName("")
{ }
~ReplaceClassWithBaseTemplateSpec(void);
private:
virtual void Initialize(clang::ASTContext &context);
virtual void HandleTranslationUnit(clang::ASTContext &Ctx);
void handleOneCXXRecordDecl(const clang::CXXRecordDecl *CXXRD);
void removeBaseSpecifier(void);
ReplaceClassWithBaseTemplateSpecVisitor *CollectionVisitor;
ReplaceClassWithBaseTemplateSpecRewriteVisitor *RewriteVisitor;;
const clang::CXXRecordDecl *TheCXXRecord;
std::string TheBaseName;
// Unimplemented
ReplaceClassWithBaseTemplateSpec(void);
ReplaceClassWithBaseTemplateSpec(const ReplaceClassWithBaseTemplateSpec &);
void operator=(const ReplaceClassWithBaseTemplateSpec &);
};
#endif