DataIO
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
EPreklucovanie.h
Go to the documentation of this file.
1 #ifndef EPREKLUCOVANIE_H
2 #define EPREKLUCOVANIE_H
3 
4 #include "dataio/DataIODefines.h"
5 #include "dataio/dataoutput/EAbstraktnyZaznam.h"
6 
7 namespace EM
8 {
9  namespace Strojcek
10  {
11  namespace StatistikaStrojcek
12  {
13  class EPreklucovanieCol;
14  class EStatistikaFileSystem;
15 
16  class DATAIO_API EPreklucovanie : public EAbstraktnyZaznam
17  {
18  public:
19  EPreklucovanie();
20  virtual ~EPreklucovanie();
21 
22  unsigned long getSNR();
23  unsigned long getCisloKarty();
24  unsigned short getCisloZavodu();
25  unsigned long getDatumPreklucovania();
26  unsigned char getVerziaPreklucovania();
27 
28  void setSNR( unsigned long newVal );
29  void setCisloKarty( unsigned long newVal );
30  void setCisloZavodu( unsigned short newVal );
31  void setDatumPreklucovania( unsigned long newVal );
32  void setVerziaPreklucovania( unsigned char newVal );
33 
34  EPreklucovanieCol *getOwner();
35  void setOwner( EPreklucovanieCol *newVal );
36 
37  bool write();
38  bool read();
39 
40  virtual short getChksum();
41 
42  private:
43  class DataClass;
44  DataClass *d;
45  };
46  }
47  }
48 }
49 
50 #endif
Class ECol : Objekt je predok pre vsetky nasledujuce kolekcie
Definition: ColReader.h:15
#define DATAIO_API
Definition: DataIODefines.h:10