retdec
constant.h
Go to the documentation of this file.
1 
7 #ifndef RETDEC_LLVMIR2HLL_IR_CONSTANT_H
8 #define RETDEC_LLVMIR2HLL_IR_CONSTANT_H
9 
11 
12 namespace retdec {
13 namespace llvmir2hll {
14 
20 class Constant: public Expression {
21 protected:
22  Constant() = default;
23 };
24 
25 } // namespace llvmir2hll
26 } // namespace retdec
27 
28 #endif
A base class for all constants.
Definition: constant.h:20
A base class of all expressions.
Definition: expression.h:23
A base class of all expressions.
A library providing API for working with back-end IR.
Definition: archive_wrapper.h:19