1
0
mirror of https://github.com/codership/wsrep-lib.git synced 2025-07-30 07:23:07 +03:00

Refactored server_service out of server_state.

This commit is contained in:
Teemu Ollakka
2018-06-18 17:45:24 +03:00
parent ef5751943d
commit cf231bdf2d
14 changed files with 142 additions and 89 deletions

View File

@ -2,6 +2,7 @@
// Copyright (C) 2018 Codership Oy <info@codership.com>
//
/** @file server_service.hpp
*
* An abstract interface for a DBMS server services.
@ -9,6 +10,11 @@
* the wsrep-lib.
*/
#ifndef WSREP_SERVER_SERVICE_HPP
#define WSREP_SERVER_SERVICE_HPP
#include <string>
namespace wsrep
{
class client_state;
@ -99,3 +105,5 @@ namespace wsrep
};
}
#endif // WSREP_SERVER_SERVICE_HPP