retdec
type_node.h
Go to the documentation of this file.
1 
7 #ifndef RETDEC_TYPE_NODE_H
8 #define RETDEC_TYPE_NODE_H
9 
12 
13 namespace retdec {
14 namespace demangler {
15 namespace borland {
16 
20 class TypeNode : public Node
21 {
22 public:
23  Qualifiers quals();
24 
25 protected:
26  explicit TypeNode(const Qualifiers &quals);
27 
28 protected:
30 };
31 
32 } // borland
33 } // demangler
34 } // retdec
35 
36 #endif //RETDEC_TYPE_NODE_H
Base class for all nodes in AST.
Definition: node.h:22
Definition: qualifiers.h:20
Base class for all type nodes.
Definition: type_node.h:21
Qualifiers _quals
Definition: type_node.h:29
TypeNode(const Qualifiers &quals)
Definition: type_node.cpp:17
Qualifiers quals()
Definition: type_node.cpp:23
Definition: archive_wrapper.h:19
Base class for all nodes in borland AST.
Representation of type qualifiers in borland AST.