retdec
type.h
Go to the documentation of this file.
1 
7 #ifndef RETDEC_LLVMIR2HLL_IR_TYPE_H
8 #define RETDEC_LLVMIR2HLL_IR_TYPE_H
9 
11 
12 namespace retdec {
13 namespace llvmir2hll {
14 
20 class Type: public Value {
21 public:
22  virtual ~Type() = default;
23 
24 protected:
25  Type() = default;
26 };
27 
28 } // namespace llvmir2hll
29 } // namespace retdec
30 
31 #endif
A base class of all types.
Definition: type.h:20
virtual ~Type()=default
A base class of all objects a module can contain.
Definition: value.h:32
A library providing API for working with back-end IR.
Definition: archive_wrapper.h:19
A base class of all objects a module can contain.