summaryrefslogtreecommitdiffstats
path: root/stone_soup/crawl-ref/source/FixAry.h
diff options
context:
space:
mode:
Diffstat (limited to 'stone_soup/crawl-ref/source/FixAry.h')
-rw-r--r--stone_soup/crawl-ref/source/FixAry.h68
1 files changed, 0 insertions, 68 deletions
diff --git a/stone_soup/crawl-ref/source/FixAry.h b/stone_soup/crawl-ref/source/FixAry.h
deleted file mode 100644
index 99f802e2f3..0000000000
--- a/stone_soup/crawl-ref/source/FixAry.h
+++ /dev/null
@@ -1,68 +0,0 @@
-/*
- * File: FixAry.h
- * Summary: Fixed size 2D vector class that asserts if you do something bad.
- * Written by: Jesse Jones
- *
- * Change History (most recent first):
- *
- * <1> 6/16/00 JDJ Created
- */
-
-#ifndef FIXARY_H
-#define FIXARY_H
-
-#include "FixVec.h"
-
-
-// ==========================================================================
-// class FixedArray
-// ==========================================================================
-template <class TYPE, int WIDTH, int HEIGHT> class FixedArray {
-
-//-----------------------------------
-// Types
-//
-public:
- typedef TYPE value_type;
- typedef TYPE& reference;
- typedef const TYPE& const_reference;
- typedef TYPE* pointer;
- typedef const TYPE* const_pointer;
-
- typedef unsigned long size_type;
- typedef long difference_type;
-
- typedef FixedVector<TYPE, HEIGHT> Column; // operator[] needs to return one of these to avoid breaking client code (if inlining is on there won't be a speed hit)
-
-//-----------------------------------
-// Initialization/Destruction
-//
-public:
- ~FixedArray() {}
-
- FixedArray() {}
-
-//-----------------------------------
-// API
-//
-public:
- // ----- Size -----
- bool empty() const {return WIDTH == 0 || HEIGHT == 0;}
- int size() const {return WIDTH*HEIGHT;}
-
- int width() const {return WIDTH;}
- int height() const {return HEIGHT;}
-
- // ----- Access -----
- Column& operator[](unsigned long index) {return mData[index];}
- const Column& operator[](unsigned long index) const {return mData[index];}
-
-//-----------------------------------
-// Member Data
-//
-protected:
- FixedVector<Column, WIDTH> mData;
-};
-
-
-#endif // FIXARY_H