struct NotReady : StateBase< NotReady, TopState >
{
//typedef NotReadyStateList reactions;
NotReady (my_context ctx) : my_base( ctx ){
outermost_context().maxPairedDevices = 3;
cout << outermost_context().maxPairedDevices << endl;
}
template< class MostDerived >
sc::result react( const PairingBaseEvents< MostDerived > & );
public:
typedef sc::custom_reaction< StartEvent > reactions;
};