// (C) Copyright 2008-2009 SDML (www.sdml.info) // // Use, modification and distribution is subject to the Boost Software // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) #include #include //#include using std::cout; using namespace origin::matrix; int main() { // constructor testing square_dynarray letters_a(4, 'a'); { //square_dynarray letters_copy(letters_a); } { //square_dynarray letters_a(4); } return 0; }