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