OMSimulatorLib
The OMSimulator project is a FMI-based co-simulation environment that supports ordinary (i.e., non-delayed) and TLM connections.
|
Go to the documentation of this file.
32 #ifndef _SSD_CONNECTOR_GEOMETRY_H_
33 #define _SSD_CONNECTOR_GEOMETRY_H_
35 #include "OMSimulator/Types.h"
37 #include <pugixml.hpp>
54 void setPosition(
double x,
double y) {this->x = x; this->y = y;}
56 double getX()
const {
return x;}
57 double getY()
const {
return y;}
59 oms_status_enu_t
exportToSSD(pugi::xml_node& root)
const;
void setPosition(double x, double y)
Definition: ConnectorGeometry.h:54
double getX() const
Definition: ConnectorGeometry.h:56
ConnectorGeometry(double x, double y)
Definition: ConnectorGeometry.cpp:39
#define logTrace()
Definition: Logging.h:110
double getY() const
Definition: ConnectorGeometry.h:57
ConnectorGeometry & operator=(ConnectorGeometry const &rhs)
Definition: ConnectorGeometry.cpp:60
Definition: ConnectorGeometry.h:45
oms_status_enu_t exportToSSD(pugi::xml_node &root) const
Definition: ConnectorGeometry.cpp:74
const char * connector_geometry
Definition: Tags.cpp:50
~ConnectorGeometry()
Definition: ConnectorGeometry.cpp:55