1
0
mirror of https://github.com/codership/wsrep-lib.git synced 2025-06-16 02:01:44 +03:00

Imported initial implementation

This commit is contained in:
Teemu Ollakka
2018-04-16 14:37:58 +03:00
commit 3b428ff0b7
19 changed files with 1954 additions and 0 deletions

13
src/provider.cpp Normal file
View File

@ -0,0 +1,13 @@
//
// Copyright (C) 2018 Codership Oy <info@codership.com>
//
#include "provider.hpp"
#include "provider_impl.hpp"
trrep::provider* trrep::provider::make_provider(
const std::string&)
{
return 0;
}