ivl 679
|
00001 /* This file is part of the ivl C++ library <http://image.ntua.gr/ivl>. 00002 A C++ template library extending syntax towards mathematical notation. 00003 00004 Copyright (C) 2012 Yannis Avrithis <iavr@image.ntua.gr> 00005 Copyright (C) 2012 Kimon Kontosis <kimonas@image.ntua.gr> 00006 00007 ivl is free software; you can redistribute it and/or modify 00008 it under the terms of the GNU Lesser General Public License 00009 version 3 as published by the Free Software Foundation. 00010 00011 Alternatively, you can redistribute it and/or modify it under the terms 00012 of the GNU General Public License version 2 as published by the Free 00013 Software Foundation. 00014 00015 ivl is distributed in the hope that it will be useful, 00016 but WITHOUT ANY WARRANTY; without even the implied warranty of 00017 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 00018 See the GNU General Public License for more details. 00019 00020 You should have received a copy of the GNU General Public License 00021 and a copy of the GNU Lesser General Public License along 00022 with ivl. If not, see <http://www.gnu.org/licenses/>. */ 00023 00024 #ifndef IVL_ARRAY_2D_DETAILS_ARRAY_2D_BASE_HPP 00025 #define IVL_ARRAY_2D_DETAILS_ARRAY_2D_BASE_HPP 00026 00027 namespace ivl { 00028 00029 template<class T, class D> class array_2d; 00030 typedef array_2d<bool, mem> bool_array_2d; 00031 /* 00032 template<class T> std::ostream& print(std::ostream& os, const array_2d<T, mem>& in); 00033 */ 00034 00035 #include "specialization/array_2d_class.hpp" 00036 //#include "specialization/unary_elem_func_class.hpp" 00037 //#include "specialization/binary_elem_func_class.hpp" 00038 //#include "specialization/subarray_class.hpp" 00039 00040 /* 00041 template <class T> 00042 inline 00043 std::ostream& print(std::ostream& os, const array_2d<T>& in) 00044 { 00045 return print_array_nd(os, in); 00046 } 00047 */ 00048 00049 } // namespace ivl 00050 00051 #endif // IVL_ARRAY_ND_DETAILS_ARRAY_ND_BASE_HPP