DataIO
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
EDistance.h
Go to the documentation of this file.
1 #if !defined _EDISTANCE_H_
2 #define _EDISTANCE_H_
3 
4 #include "dataio/DataIODefines.h"
5 #include "core/common/Node.h"
6 #include <list>
7 
8 namespace EM
9 {
10  namespace Strojcek
11  {
12  namespace VstupneUdaje
13  {
14  namespace CestovnePoriadky
15  {
16  class EDistanceCol;
17  class ESynchroPoint;
18 
19  class DATAIO_API EDistance : public ENode
20  {
21  public:
22  EDistance( EDistanceCol *owner );
23  virtual ~EDistance();
24 
25  unsigned short GetStopOrder1();
26  unsigned short GetStopOrder2();
27  unsigned char GetPlatform1();
28  unsigned char GetPlatform2();
29  unsigned long GetDistance();
30 
31  void SetStopOrder1( unsigned short newVal );
32  void SetStopOrder2( unsigned short newVal );
33  void SetPlatform1( unsigned char newVal );
34  void SetPlatform2( unsigned char newVal );
35  void SetDistance( unsigned long newVal );
36 
37  unsigned long GetSynchroPointOffset();
38  void SetSynchroPointOffset( unsigned long synchroPointBinaryFileOffset );
39 
40  std::list<ESynchroPoint*> *GetSynchroPointCol();
41  EDistanceCol *GetOwner();
42 
43  virtual int Compare(const void* bData);
44  virtual int Compare(EEMObject* bData);
45 
46  EDistance *GetLeft();
47  EDistance *GetRight();
48 
49  unsigned long GetDistanceID();
50  void SetDistanceID( unsigned long newVal );
51 
52  private:
53  class DataClass;
54  DataClass *d;
55  };
56  }
57  }
58  }
59 }
60 
61 #endif
Class ECol : Objekt je predok pre vsetky nasledujuce kolekcie
Definition: ColReader.h:15
#define DATAIO_API
Definition: DataIODefines.h:10