retdec
function_declaration.h
Go to the documentation of this file.
1 
7 #ifndef RETDEC_CTYPES_FUNCTION_DECLARATION_H
8 #define RETDEC_CTYPES_FUNCTION_DECLARATION_H
9 
10 #include <string>
11 
12 namespace retdec {
13 namespace ctypes {
14 
19 {
20  public:
21  FunctionDeclaration() = default;
22  explicit FunctionDeclaration(const std::string &declaration);
23 
24  operator std::string() const;
25 
26  private:
27  std::string declaration;
28 };
29 
30 } // namespace ctypes
31 } // namespace retdec
32 
33 #endif
A representation of a function declaration.
Definition: function_declaration.h:19
std::string declaration
Definition: function_declaration.h:27
Definition: archive_wrapper.h:19