// wrapper.h
#include <boost/msm/front/state_machine_def.hpp>
#include <boost/msm/back/state_machine.hpp>
#include <boost/shared_ptr.hpp> 

class wrapper
{
  wrapper();
  struct fsm;
  boost::shared_ptr<fsm> player_fsm;
};