diff options
author | William R. Otte <wotte@dre.vanderbilt.edu> | 2006-07-24 15:50:30 +0000 |
---|---|---|
committer | William R. Otte <wotte@dre.vanderbilt.edu> | 2006-07-24 15:50:30 +0000 |
commit | c44379cc7d9c7aa113989237ab0f56db12aa5219 (patch) | |
tree | 66a84b20d47f2269d8bdc6e0323f338763424d3a /ACE/apps/JAWS3/small/SS_State_ERROR.h | |
parent | 3aff90f4a822fcf5d902bbfbcc9fa931d6191a8c (diff) | |
download | ATCD-c44379cc7d9c7aa113989237ab0f56db12aa5219.tar.gz |
Repo restructuring
Diffstat (limited to 'ACE/apps/JAWS3/small/SS_State_ERROR.h')
-rw-r--r-- | ACE/apps/JAWS3/small/SS_State_ERROR.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/ACE/apps/JAWS3/small/SS_State_ERROR.h b/ACE/apps/JAWS3/small/SS_State_ERROR.h new file mode 100644 index 00000000000..c1f17dd3536 --- /dev/null +++ b/ACE/apps/JAWS3/small/SS_State_ERROR.h @@ -0,0 +1,30 @@ +/* -*- c++ -*- */ +// $Id$ + +#ifndef TERA_SS_STATE_ERROR_H +#define TERA_SS_STATE_ERROR_H + +#include "ace/OS.h" +#include "ace/Singleton.h" + +#include "jaws3/Protocol_Handler.h" + +class TeraSS_State_ERROR : public JAWS_Protocol_State +{ +public: + + int service (JAWS_Event_Completer *, void *data); + + JAWS_Protocol_State * transition ( const JAWS_Event_Result &result + , void *data + , void *act + ); + + static JAWS_Protocol_State * instance (void) + { + return ACE_Singleton<TeraSS_State_ERROR, ACE_SYNCH_MUTEX>::instance (); + } + +}; + +#endif /* TERA_SS_STATE_ERROR_H */ |