Moved internal header files to src dir

This commit is contained in:
Hauke Zühl
2016-05-03 09:17:56 +02:00
parent a95ada30db
commit cd025433d3
6 changed files with 3 additions and 3 deletions
-9
View File
@@ -1,9 +0,0 @@
#ifndef __HTTP_BUILD_QUERY_H__
#define __HTTP_BUILD_QUERY_H__
#include <map>
#include <string>
std::string http_build_query(std::map<std::string, std::string>);
#endif
-10
View File
@@ -1,10 +0,0 @@
#ifndef __JSON_ENCODE_H__
#define __JSON_ENCODE_H__
#include <map>
#include <string>
#include <json/json.h>
std::string json_encode(std::map<std::string, std::string>);
#endif
-23
View File
@@ -1,23 +0,0 @@
#ifndef __STD_H__
#define __STD_H__
#include <ios>
#include <sstream>
#include <string>
#include <vector>
// Makro(s)
#define SSTR( x ) static_cast< std::ostringstream & >(( std::ostringstream() << std::dec << x ) ).str()
typedef unsigned long long int uint64;
uint64 stoi(std::string);
std::string itos(uint64);
std::string currentDate();
std::vector<std::string> split(const std::string &text, char sep = ' ');
float stof(std::string);
std::string trim(const std::string&);
std::string gethome();
void Log(std::string);
#endif