DataIO
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
EZobrazenieCol.h
Go to the documentation of this file.
1 #if !defined EZOBRAZENIE_COL_H
2 #define EZOBRAZENIE_COL_H
3 
4 #include "dataio/DataIODefines.h"
5 #include "dataio/datainput/ColReader.h"
6 #include "core/common/Head.h"
7 
8 namespace EM
9 {
10  namespace Strojcek
11  {
12  namespace VstupneUdaje
13  {
14  namespace Tabule
15  {
16  #define TABZOBRAZENIEFILENAME "tabZobrazenie.dat"
17 
18  class ETabula;
19  class EZobrazenie;
20  class EFileSystem;
21 
22  class DATAIO_API EZobrazenieCol : public EHead, EColReader
23  {
24  public:
25  EZobrazenieCol( ETabula *owner );
26  virtual ~EZobrazenieCol();
27 
28  ETabula *GetOwner();
29 
30  void Add( EZobrazenie *newVal );
31  long Write();
32  long Write( EFileSystem *file );
33  long Read( unsigned long pocet, unsigned long start );
34  long Read( FILE *file, unsigned long pocet, unsigned long start );
35  virtual long GetSize();
36  virtual long FillRecord( const char *pomPole, long minimum );
37  EZobrazenie *GetFirst();
38 
39  private:
40  ETabula *mOwner;
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