upd: setting up structure
This commit is contained in:
@ -11,6 +11,7 @@
|
||||
#include <stdexcept>
|
||||
#include <string>
|
||||
#include <thread>
|
||||
#include <vector>
|
||||
class FatalError : public std::exception {
|
||||
public:
|
||||
FatalError(const char *__message, int __code)
|
||||
@ -104,4 +105,8 @@ void debugPrint(Args... args) {
|
||||
std::cerr << std::endl;
|
||||
BookStore_ZYM::debug_Print_Mutex.unlock();
|
||||
}
|
||||
|
||||
void Respond(BlockingStringStream *output_ptr, std::string SessionToken,
|
||||
std::string OperationToken, std::string AuthenticationKey,
|
||||
const std::vector<std::string> &ret);
|
||||
#endif // PROTECTOR_UTILITY_H
|
@ -22,5 +22,7 @@ class BookStoreBackEndClass {
|
||||
}
|
||||
~BookStoreBackEndClass() { delete engine_ptr; }
|
||||
void Run();
|
||||
void PostRequest(std::string SessionToken, std::string OperationToken,
|
||||
std::string AuthenticationKey, std::string cmd);
|
||||
};
|
||||
#endif // PROTECTOR_SCHEDULE_H
|
Reference in New Issue
Block a user