DataIO
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
EZasobnik.h
Go to the documentation of this file.
1 #ifndef _EZASOBNIK_H_
2 #define _EZASOBNIK_H_
3 
4 #include "dataio/DataIODefines.h"
5 #include "core/common/Node.h"
6 
7 namespace EM
8 {
9  namespace Strojcek
10  {
11  namespace StatistikaStrojcek
12  {
13  class DATAIO_API EZasobnik : public ENode
14  {
15  public:
16  EZasobnik();
17  virtual ~EZasobnik();
18 
19  unsigned short GetHodnota();
20  unsigned long GetSuma();
21 
22  void SetHodnota( unsigned short newVal );
23  void SetSuma( unsigned long newVal );
24 
25  bool write();
26  bool read();
27  EZasobnik *GetLeft();
28  EZasobnik *GetRight();
29 
30  private:
31  class DataClass;
32  DataClass *d;
33  };
34  }
35  }
36 }
37 
38 #endif
Class ECol : Objekt je predok pre vsetky nasledujuce kolekcie
Definition: ColReader.h:15
#define DATAIO_API
Definition: DataIODefines.h:10