]> git.siccegge.de Git - frida/frida.git/blob - src/disassembler/llvm/LLVMFunction.hxx
Add interface to iterate over functions
[frida/frida.git] / src / disassembler / llvm / LLVMFunction.hxx
1 #ifndef INCLUDE__LLVMFunction_hxx
2 #define INCLUDE__LLVMFunction_hxx
3
4 #include "disassembler/Function.hxx"
5
6 class LLVMFunction : public Function {
7 public:
8 LLVMFunction(const std::string& name, uint64_t start_address)
9 :Function(name, start_address) {}
10 private:
11 };
12
13 #endif
14
15
16