class RepeatedPlayingState: public state< RepeatedPlayingState, PlayingState >
{
public:
RepeatedPlayingState( my_context ctx , long start_pos, long end_pos) : my_base( ctx ){
context< PlayerFsm >().player_.PlayFromTo(start_pos, end_pos);
}
};
Best Regards
Hill