memgraph/include/communication/bolt/v1/states.hpp

21 lines
252 B
C++
Raw Normal View History

2016-08-02 05:14:09 +08:00
#pragma once
#include "communication/bolt/v1/states/state.hpp"
2016-08-02 05:14:09 +08:00
#include "logging/log.hpp"
namespace bolt
{
class States
{
public:
States();
State::uptr handshake;
State::uptr init;
State::uptr executor;
2016-08-08 04:19:04 +08:00
State::uptr error;
2016-08-02 05:14:09 +08:00
};
}