// =========================================================================== // Some data types // =========================================================================== #pragma once #ifndef __Runtime_types_h #define __Runtime_types_h typedef enum { NoModel, NotExecutable, Executable, Stopped, Paused, Running } ModelState; typedef enum { // list can contain inputs, state vars, outputs tagNull, tagInput, tagState, tagOutput, tagConstant, tagSetupVar, tagDescription, tagSetting, tagGraph } SimlabListTag; #endif __Runtime_types_h