
Header of ... More...
#include <openfluid/ware/PluggableWare.hpp>#include <openfluid/base/SimulationLogger.hpp>#include <openfluid/base/StdoutFileOStream.hpp>#include <openfluid/ware/WareException.hpp>#include <openfluid/base/SimulationStatus.hpp>#include <openfluid/base/FrameworkException.hpp>#include <openfluid/dllexport.hpp>Go to the source code of this file.
Classes | |
| class | openfluid::ware::SimulationDrivenWare |
Namespaces | |
| namespace | openfluid |
| namespace | openfluid::ware |
Defines | |
| #define | REQUIRE_SIMULATION_STAGE(stage, sender, msg) |
| #define | REQUIRE_SIMULATION_STAGE_GE(stage, sender, msg) |
| #define | REQUIRE_SIMULATION_STAGE_LE(stage, sender, msg) |
Header of ...
| #define REQUIRE_SIMULATION_STAGE | ( | stage, | |
| sender, | |||
| msg | |||
| ) |
if (OPENFLUID_GetCurrentStage() != (stage)) \ throw openfluid::base::FrameworkException(sender,msg);
| #define REQUIRE_SIMULATION_STAGE_GE | ( | stage, | |
| sender, | |||
| msg | |||
| ) |
if (OPENFLUID_GetCurrentStage() < (stage)) \ throw openfluid::base::FrameworkException(sender,msg);
| #define REQUIRE_SIMULATION_STAGE_LE | ( | stage, | |
| sender, | |||
| msg | |||
| ) |
if (OPENFLUID_GetCurrentStage() > (stage)) \ throw openfluid::base::FrameworkException(sender,msg);
1.7.6.1