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

Removed wsrep_api.h dependency from view.hpp

This commit is contained in:
Teemu Ollakka
2018-06-18 20:39:25 +03:00
parent 60fb119fa1
commit d1a1e298e9
9 changed files with 151 additions and 86 deletions

View File

@ -8,6 +8,8 @@
#include "id.hpp"
#include "seqno.hpp"
#include <iosfwd>
namespace wsrep
{
class gtid
@ -27,6 +29,8 @@ namespace wsrep
wsrep::id id_;
wsrep::seqno seqno_;
};
std::ostream& operator<<(std::ostream&, const wsrep::gtid&);
}
#endif // WSREP_GTID_HPP