ROSE  0.9.6a
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
InterProcDataFlowAnalysis.h
Go to the documentation of this file.
1 /*
2  * File: InterProcDataFlowAnalysis.h
3  * Author: rahman2
4  *
5  * Created on August 15, 2011, 11:06 AM
6  */
7 #ifndef INTERPROCDATAFLOWANALYSIS_H
8 #define INTERPROCDATAFLOWANALYSIS_H
9 #include <vector>
10 
11 
13 protected:
16 
17 public:
18  InterProcDataFlowAnalysis(SgProject *_project) : project(_project){};
20  virtual void getFunctionDeclarations(std::vector<SgFunctionDeclaration*> &) = 0;
21 
24 
26  virtual void run();
27 };
28 
29 
30 
31 #endif /* INTERPROCDATAFLOWANALYSIS_H */
32