--- /dev/null
+#ifndef INCLUDE__Config_hxx_
+#define INCLUDE__Config_hxx_
+
+#cmakedefine CMAKE_INSTALL_FULL_LIBDIR "@CMAKE_INSTALL_FULL_LIBDIR@"
+
+#endif /* INCLUDE__Config_hxx_ */
--- /dev/null
+#include "Comment.hxx"
+#include "Function.hxx"
+
+Comment::Comment(uint64_t address, InformationManager* manager)
+ : address(address)
+ , location(NULL)
+ , manager(manager) {}
+
+Comment::Comment(uint64_t address, Function* location, InformationManager* manager)
+ : address(address)
+ , location(location)
+ , manager(manager) {}
+
+void Comment::setText(const std::string& text) {
+ this->text = text;
+}
+
+uint64_t Comment::getAddress() {
+ return address;
+}
--- /dev/null
+#ifndef INCLUDE__NewFunctionEvent_hxx_
+#define INCLUDE__NewFunctionEvent_hxx_
+
+#include <string>
+
+class Function;
+
+class NewFunctionEvent {
+public:
+ NewFunctionEvent(uint64_t address, Function* function)
+ : address(address), function(function) {}
+
+ uint64_t address;
+ Function* function;
+};
+
+#endif /* INCLUDE__NewFunctionEvent_hxx_ */