blob: 38371d385b617eb634e5fcff0afe8de778162997 [file] [log] [blame]
// Copyright (c) 2014 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef BASE_STATE_MACHINE_SHELL_H_
#define BASE_STATE_MACHINE_SHELL_H_
#include "starboard/common/state_machine.h"
namespace base {
using ::starboard::StateMachineBase;
using ::starboard::StateMachine;
template <typename StateEnum, typename EventEnum>
using StateMachineShell = StateMachine<StateEnum, EventEnum>;
} // namespace base
#endif // BASE_CIRCULAR_BUFFER_SHELL_H_