All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
path_checker.h
Go to the documentation of this file.
1 #ifndef PATH_CHECKER_H_INCLUDED_
2 #define PATH_CHECKER_H_INCLUDED_
3 
4 #include <vector>
5 #include <string>
6 #include <libgen.h>
7 
8 #include "boost/filesystem.hpp"
9 
10 #include "rose.h"
11 
12 namespace risc {
13 
14 namespace traverser {
15 
24 bool is_defined_in_included_library(SgProject* project, SgNode* node);
25 
26 }; // end namespace traverser
27 
28 }; // end namespace risc
29 
30 #endif /* PATH_CHECKER_H_INCLUDED_ */
31 
32 /* ex: set softtabstop=2 tabstop=2 shiftwidth=2 expandtab: */
bool is_defined_in_included_library(SgProject *project, SgNode *node)
This funciton checks if the defintion of the node is in a file that is located in the given include p...
Definition: path_checker.cpp:4