OMSimulatorLib
The OMSimulator project is a FMI-based co-simulation environment that supports ordinary (i.e., non-delayed) and TLM connections.
SystemGeometry.h
Go to the documentation of this file.
1 /*
2  * This file is part of OpenModelica.
3  *
4  * Copyright (c) 1998-CurrentYear, Open Source Modelica Consortium (OSMC),
5  * c/o Linköpings universitet, Department of Computer and Information Science,
6  * SE-58183 Linköping, Sweden.
7  *
8  * All rights reserved.
9  *
10  * THIS PROGRAM IS PROVIDED UNDER THE TERMS OF GPL VERSION 3 LICENSE OR
11  * THIS OSMC PUBLIC LICENSE (OSMC-PL) VERSION 1.2.
12  * ANY USE, REPRODUCTION OR DISTRIBUTION OF THIS PROGRAM CONSTITUTES
13  * RECIPIENT'S ACCEPTANCE OF THE OSMC PUBLIC LICENSE OR THE GPL VERSION 3,
14  * ACCORDING TO RECIPIENTS CHOICE.
15  *
16  * The OpenModelica software and the Open Source Modelica
17  * Consortium (OSMC) Public License (OSMC-PL) are obtained
18  * from OSMC, either from the above address,
19  * from the URLs: http://www.ida.liu.se/projects/OpenModelica or
20  * http://www.openmodelica.org, and in the OpenModelica distribution.
21  * GNU version 3 is obtained from: http://www.gnu.org/copyleft/gpl.html.
22  *
23  * This program is distributed WITHOUT ANY WARRANTY; without
24  * even the implied warranty of MERCHANTABILITY or FITNESS
25  * FOR A PARTICULAR PURPOSE, EXCEPT AS EXPRESSLY SET FORTH
26  * IN THE BY RECIPIENT SELECTED SUBSIDIARY LICENSE CONDITIONS OF OSMC-PL.
27  *
28  * See the full OSMC Public License conditions for more details.
29  *
30  */
31 
32 #ifndef _SSD_SYSTEM_GEOMETRY_H_
33 #define _SSD_SYSTEM_GEOMETRY_H_
34 
35 #include "OMSimulator/Types.h"
36 
37 #include <string>
38 
39 namespace oms
40 {
41  namespace ssd
42  {
43  class SystemGeometry : protected ssd_system_geometry_t
44  {
45  public:
47  SystemGeometry(const SystemGeometry& rhs);
49 
51 
52  void setSizePosition(double x1, double y1, double x2, double y2) {this->x1 = x1; this->y1 = y1; this->x2 = x2; this->y2 = y2;}
53 
54  double getX1() const {return x1;}
55  double getY1() const {return y1;}
56  double getX2() const {return x2;}
57  double getY2() const {return y2;}
58  };
59  }
60 }
61 
62 #endif
oms
Definition: AlgLoop.h:44
logTrace
#define logTrace()
Definition: Logging.h:110
oms::ssd::SystemGeometry::operator=
SystemGeometry & operator=(SystemGeometry const &rhs)
Definition: SystemGeometry.cpp:62
oms::ssd::SystemGeometry
Definition: SystemGeometry.h:43
oms::ssd::SystemGeometry::getX1
double getX1() const
Definition: SystemGeometry.h:54
oms::ssd::SystemGeometry::getY2
double getY2() const
Definition: SystemGeometry.h:57
oms::ssd::SystemGeometry::~SystemGeometry
~SystemGeometry()
Definition: SystemGeometry.cpp:57
oms::ssd::SystemGeometry::setSizePosition
void setSizePosition(double x1, double y1, double x2, double y2)
Definition: SystemGeometry.h:52
oms::ssd::SystemGeometry::getY1
double getY1() const
Definition: SystemGeometry.h:55
SystemGeometry.h
oms::ssd::SystemGeometry::getX2
double getX2() const
Definition: SystemGeometry.h:56
oms::ssd::SystemGeometry::SystemGeometry
SystemGeometry()
Definition: SystemGeometry.cpp:37