mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-06 05:37:48 +00:00
GEEKING
This commit is contained in:
@@ -0,0 +1,47 @@
|
||||
#include "../CookiesEngine.h"
|
||||
#include "../format_string.h"
|
||||
|
||||
bool CookiesEngine::reportValue(CookiesEngine &engine, std::string key, std::string value)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
std::wstring CookiesEngine::getCookiesFilePath()
|
||||
{
|
||||
std::string path("");
|
||||
return convert_s2w(path);
|
||||
}
|
||||
|
||||
void CookiesEngine::setCookiesFilePath(std::wstring &path)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
CookiesEngine::CookiesEngine(std::wstring path)
|
||||
{
|
||||
}
|
||||
|
||||
void CookiesEngine::ParseFileContent(std::fstream &f)
|
||||
{
|
||||
}
|
||||
|
||||
void CookiesEngine::FlushContent(std::fstream &f)
|
||||
{
|
||||
}
|
||||
|
||||
int CookiesEngine::SetValue(std::string key, std::string value)
|
||||
{
|
||||
return -1;
|
||||
}
|
||||
|
||||
std::string CookiesEngine::GetValue(std::string key, int *errorCode, bool *exists)
|
||||
{
|
||||
return "";
|
||||
}
|
||||
|
||||
int CookiesEngine::DeleteValue(std::string key)
|
||||
{
|
||||
return -1;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user