/* * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * Copyright 2010-2016 Danny Robson */ #ifndef __UTIL_PASCAL_HPP #define __UTIL_PASCAL_HPP #include #include namespace cruft { template class parray { public: parray (SizeT size, DataT *data); DataT& operator[] (SizeT idx); const DataT& operator[] (SizeT idx) const; DataT& at (SizeT idx); const DataT& at (SizeT idx) const; DataT* begin (void); DataT* end (void); const DataT* cbegin (void) const; const DataT* cend (void) const; const DataT* data (void) const; DataT* data (void); SizeT size (void) const; private: const SizeT m_size; DataT *m_data; }; template std::ostream& operator<< (std::ostream&, cruft::parray); template std::ostream& operator<< (std::ostream&, cruft::parray); template std::ostream& operator<< (std::ostream&, cruft::parray); } #endif