#ifndef TRANSITION__H
#define TRANSITION__H

#include <vector>
#include "Action.hpp"

class Transition
{
  private :

  std::string name;
  std::vector<Action> sequence;

  public :

  Transition(const std::string & name);
};

#endif