Moved internal header files to src dir
This commit is contained in:
@@ -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
|
||||
@@ -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
|
||||
@@ -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
|
||||
Reference in New Issue
Block a user