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