27 lines
405 B
C++
Executable File
27 lines
405 B
C++
Executable File
#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:
|
|
// @FPUB
|
|
|
|
TField& operator[] (int index) const { return (TField&)TArray::operator[](index); } // Operatore [] ritorna il campo di posto index.
|
|
|
|
TField_array(int);
|
|
|
|
};
|
|
|