10 lines
268 B
C++
10 lines
268 B
C++
#pragma once
|
|
|
|
#include <vector>
|
|
|
|
#include "dvm.h"
|
|
#include "../GraphCall/graph_calls.h"
|
|
|
|
extern void Private_Vars_Analyzer(SgStatement* start);
|
|
void PrivateAnalyzer(SgFile *file, std::vector<FuncInfo*> &funcs);
|
|
void PrivateAnalyzerForMain(SgStatement* start); |