cfc31bb057875094089a6844f5aec18eeeb42874
[h316.git] / pc-tools / ldc2 / src / tool.hh
1 #ifndef TOOL_HH
2 #define TOOL_HH
3
4 #include <vector>
5 #include <string>
6
7 using namespace std;
8
9 extern int dump_vector(vector<string> strings);
10 extern int dump_vector_fp(vector<string> strings, FILE * fp);
11
12 template<typename T>
13 extern void merge_vector_unique(vector<T> &target, const vector<T> & source);
14
15
16 #endif