summaryrefslogtreecommitdiffstats
path: root/lib/MiddleWare/MiddleWareTypes.h
blob: 5f8ee6acdedd0438db0d6c0db30bd106fdb51d2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef MIDDLEWARETYPES_H_
#define MIDDLEWARETYPES_H_

#include <map>
#include <set>
#include <vector>
#include <string>

typedef std::vector<std::string> vector_strings_t;
typedef std::map<std::string, std::string> map_string_string_t;
typedef std::set<std::string> set_strings_t;

#endif /* MIDDLEWARETYPES_H_ */