-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCommonOperators.h
26 lines (18 loc) · 1.08 KB
/
CommonOperators.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ifndef BaseLib_CommonOperators_h_Included
#define BaseLib_CommonOperators_h_Included
#include"BaseLib/CommonDefines.h"
#include"BaseLib/Export.h"
namespace BaseLib
{
//DLL_STATE std::ostream& operator<<(std::ostream &ostr, const QString &s);
//DLL_STATE std::ostream& operator<<(std::ostream &ostr, const QStringList &s);
DLL_STATE std::ostream& operator<<(std::ostream &ostr, const std::list<std::string> &listString);
DLL_STATE std::ostream& operator<<(std::ostream &ostr, const std::vector<std::string> &listString);
DLL_STATE std::ostream& operator<<(std::ostream &ostr, const std::vector<unsigned char> &listString);
DLL_STATE std::ostream& operator<<(std::ostream &ostr, const std::set<std::string> &listString);
DLL_STATE std::ostream& operator<<(std::ostream &ostr, const struct timespec &ts);
DLL_STATE std::ostream& operator<<(std::ostream &ostr, const std::vector<long> &items);
//DLL_STATE std::ostream& operator+(std::string &str, const int &a);
//DLL_STATE template<class T> std::string operator+(std::string const &a, const T &b);
}
#endif