memgraph/include/bolt/v1/states.hpp
2016-08-10 09:39:02 +01:00

21 lines
238 B
C++

#pragma once
#include "bolt/v1/states/state.hpp"
#include "logging/log.hpp"
namespace bolt
{
class States
{
public:
States();
State::uptr handshake;
State::uptr init;
State::uptr executor;
State::uptr error;
};
}