1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
3 // File: ModelAPI_IReentrant.hxx
4 // Created: 30 Mar 2017
5 // Author: Natalia ERMOLAEVA
7 #ifndef ModelAPI_IReentrant_H
8 #define ModelAPI_IReentrant_H
17 /** \class ModelAPI_IReentrant
19 * \brief Interface of a class which can process specific messages
21 class ModelAPI_IReentrant
24 MODELAPI_EXPORT virtual ~ModelAPI_IReentrant();
26 /// Apply information of the message to current object.
27 /// \param theMessage a container of information
28 /// \return a next active attribute name
29 virtual std::string processEvent(const std::shared_ptr<Events_Message>& theMessage) = 0;
32 typedef std::shared_ptr<ModelAPI_IReentrant> ModelReentrantPtr;