]> git.siccegge.de Git - frida/frida.git/blobdiff - src/core/Function.hxx
Add doc repo as submodule
[frida/frida.git] / src / core / Function.hxx
index ab8c0c9193c937c2e3d83501d5daa38555b97d06..3a328f6d203c027b57acf18b034477d4ff7192cd 100644 (file)
@@ -6,6 +6,7 @@
 
 class InformationManager;
 class QXmlStreamWriter;
+class QXmlStreamReader;
 
 class Function {
 public:
@@ -16,6 +17,9 @@ public:
 
        InformationManager* getManager() const { return manager; }
 
+       /* Dynamic functions are the ones which are imported from shared
+        * libraries and not structly part of the binary at hand
+        */
        bool isDynamic() const { return dynamic; }
 
        void addBasicBlock(BasicBlock* block) {