mirror of
https://github.com/DrPerkyLegit/LCEServerTest.git
synced 2026-05-24 04:24:35 +00:00
removed stdafx from server namespace logger is now header only added class stubs added accessor classes and minor code in them added nlohmann_json to includes protocol switch back to 560 while we wait for next neolegacy release
14 lines
273 B
C++
14 lines
273 B
C++
#pragma once
|
|
#include <string>
|
|
#include <memory>
|
|
|
|
#include "../Storage/GenericStorage.h"
|
|
|
|
class ServerAccessor {
|
|
public:
|
|
ServerAccessor(std::string name, std::string path = "");
|
|
virtual ~ServerAccessor() = default;
|
|
|
|
protected:
|
|
std::shared_ptr<GenericStorage> storage;
|
|
}; |