2016-08-02 05:14:09 +08:00
|
|
|
#pragma once
|
|
|
|
|
2016-08-11 11:47:30 +08:00
|
|
|
#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
|
|
|
};
|
|
|
|
|
|
|
|
}
|