summaryrefslogtreecommitdiffstats
path: root/sc-ap/typedefs.h
blob: ac3aedc1f7ed5eb9b639c2336c2375d298299511 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef TYPEDEFS_H
#define TYPEDEFS_H

#include <string>
#include <set>
#include <map>
#include <list>

typedef std::wstring mystring;
typedef std::set<mystring> stringSet; 
typedef std::map<mystring, mystring> stringMap;
typedef std::list<mystring> stringList;
#endif