DataIO
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
EDallas.h
Go to the documentation of this file.
1 #if !defined EDALLAS_H
2 #define EDALLAS_H
3 
4 #include <string>
5 #include "core/common/Node.h"
6 #include "dataio/DataIODefines.h"
7 
8 namespace EM
9 {
10  namespace Strojcek
11  {
12  namespace VstupneUdaje
13  {
14  namespace Nastavenia
15  {
16  class EDallasCol;
17 
18  class DATAIO_API EDallas : public ENode
19  {
20  public:
21  EDallas( EDallasCol *owner );
22  virtual ~EDallas();
23 
24  EDallasCol *GetOwner();
25 
26  std::string &GetDallasCislo();
27  std::string &GetPoznamka();
28 
29  void SetDallasCislo( const std::string &newVal );
30  void SetPoznamka( const std::string &newVal );
31 
32  EDallas *GetLeft();
33  EDallas *GetRight();
34 
35  protected:
36  virtual long Write( FILE *file );
37 
38  private:
39  class DataClass;
40  DataClass *d;
41  };
42  }
43  }
44  }
45 }
46 
47 #endif
Class ECol : Objekt je predok pre vsetky nasledujuce kolekcie
Definition: ColReader.h:15
#define DATAIO_API
Definition: DataIODefines.h:10