1994-08-12 10:52:49 +00:00
|
|
|
#ifndef __FIELDBUF_H
|
|
|
|
#define __FIELDBUF_H
|
|
|
|
|
|
|
|
#ifndef __ARRAY_H
|
|
|
|
#include <array.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __FIELD_H
|
|
|
|
#include <field.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// @C
|
|
|
|
// class TField_array : public TArray
|
|
|
|
// @END
|
|
|
|
|
|
|
|
class TField_array : public TArray
|
|
|
|
{
|
|
|
|
public:
|
1994-12-29 14:51:43 +00:00
|
|
|
// @FPUB
|
1994-08-12 10:52:49 +00:00
|
|
|
|
|
|
|
TField& operator[] (int index) const { return (TField&)TArray::operator[](index); } // Operatore [] ritorna il campo di posto index.
|
|
|
|
|
|
|
|
TField_array(int);
|
|
|
|
|
|
|
|
};
|
|
|
|
|