00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef __BxArrayFixed__
00018 #define __BxArrayFixed__
00019
00020 #include "BxArray.h"
00021
00048 class DECLSPEC BxArrayFixed : public BxArray
00049 {
00050 protected:
00051 int dimensions_;
00052 public:
00053 BxArrayFixed();
00054 BxArrayFixed(int dim);
00055 BxArrayFixed(const BxArrayFixed& copy);
00056 virtual ~BxArrayFixed();
00057 virtual BxArrayFixed* clone() const;
00058
00059 virtual char* className() const { return "BxArrayFixed"; }
00060 };
00061
00062 #endif
00063
00064