Mercurial > hg > octave-nkf
view src/ov-cs-list.cc @ 7157:6f55e942a9c7
Added tag ss-2-9-17 for changeset 77de8319c337
author | jwe@segfault.lan |
---|---|
date | Fri, 01 Feb 2008 23:45:07 -0500 |
parents | a1dbe9d80eee |
children | c9a476b1e664 |
line wrap: on
line source
/* Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007 John W. Eaton This file is part of Octave. Octave is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. Octave is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with Octave; see the file COPYING. If not, see <http://www.gnu.org/licenses/>. */ #ifdef HAVE_CONFIG_H #include <config.h> #endif #include <iostream> #include <sstream> #include "lo-utils.h" #include "defun.h" #include "error.h" #include "ov-cs-list.h" #include "unwind-prot.h" DEFINE_OCTAVE_ALLOCATOR (octave_cs_list); DEFINE_OV_TYPEID_FUNCTIONS_AND_DATA (octave_cs_list, "cs-list", "cs-list"); octave_cs_list::octave_cs_list (const Cell& c) : octave_base_value (), lst () { octave_idx_type n = c.length (); lst.resize (n); for (octave_idx_type i = 0; i < n; i++) lst(i) = c(i); } void octave_cs_list::print (std::ostream& os, bool) const { print_raw (os); } void octave_cs_list::print_raw (std::ostream& os, bool) const { unwind_protect::begin_frame ("octave_cs_list_print"); octave_idx_type n = lst.length (); if (n > 0) { indent (os); os << "(,"; newline (os); increment_indent_level (); for (octave_idx_type i = 0; i < n; i++) { std::ostringstream buf; buf << "[" << i+1 << "]"; octave_value val = lst(i); val.print_with_name (os, buf.str ()); } decrement_indent_level (); indent (os); os << ",)"; } else os << "(,,)"; newline (os); unwind_protect::run_frame ("octave_cs_list_print"); } /* ;;; Local Variables: *** ;;; mode: C++ *** ;;; End: *** */