using System; using Microsoft.SPOT; using CPF; namespace CPFUnitTests { class DummyState : StateBase { public override int doStateEntryActions() { throw new NotImplementedException(); } public override int doStateActions() { throw new NotImplementedException(); } public override CPFStates checkEvents() { throw new NotImplementedException(); } public override int doExitActions(bool timedOut) { throw new NotImplementedException(); } public override CPFStates doTimeoutAction() { throw new NotImplementedException(); } } }