Click here to Skip to main content
15,886,362 members
Articles / Desktop Programming / Win32

Visual Modeling of Complex Reactive Systems with Harel UML StateCharts

Rate me:
Please Sign up or sign in to vote.
5.00/5 (7 votes)
8 Sep 2009LGPL310 min read 43.6K   692   35  
This article presents a commercial-grade cross-platform Harel UML StateChart Open-Source application framework named StateWizard for concurrent, distributed, and real-time reactive system development with simplicity, efficiency, and scalability.
#ifndef SINGLE_STATE_H
#define SINGLE_STATE_H

#include "sme.h"


#ifdef __cplusplus
extern "C" {
#endif

class CSingleState: public SME_OBJ_T
{
public:
	CSingleState(const char* _sAppName, SME_STATE_T *_pRoot):SME_OBJ_T(_sAppName, _pRoot) {
	};

SME_BEGIN_CLASS_MEMBER_DECLARE(SingleState,CSingleState)
SME_END_CLASS_MEMBER_DECLARE


SME_BEGIN_EVENT_HANDLER(SingleState,SingleState)
SME_EVENT_HANDLER_DEC(SingleStateEntry)
SME_EVENT_HANDLER_DEC(SingleStateExit)
SME_END_EVENT_HANDLER(SingleState,SingleState)

};

#ifdef __cplusplus
}
#endif

#endif

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU Lesser General Public License (LGPLv3)


Written By
Software Developer (Senior)
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions