]> git.siccegge.de Git - frida/frida.git/blob - src/core/events/ChangeCommentEvent.hxx
Add doc repo as submodule
[frida/frida.git] / src / core / events / ChangeCommentEvent.hxx
1 #ifndef INCLUDE__ChangeCommentEvent_hxx_
2 #define INCLUDE__ChangeCommentEvent_hxx_
3
4 #include <string>
5
6 class Comment;
7 class Function;
8
9 class ChangeCommentEvent {
10 public:
11 ChangeCommentEvent(uint64_t address, Function* function, Comment* comment)
12 : address(address), function(function), comment(comment) {}
13 ChangeCommentEvent(uint64_t address, Comment* comment)
14 : address(address), function(NULL), comment(comment) {}
15
16 uint64_t address;
17 Function* function;
18 Comment* comment;
19 };
20
21 #endif /* INCLUDE__ChangeCommentEvent_hxx_ */