Mercurial > hg > octave-lyh
view src/ov-cs-list.cc @ 5069:b9dae14b5ada
[project @ 2004-11-05 16:18:11 by jwe]
author | jwe |
---|---|
date | Fri, 05 Nov 2004 16:18:12 +0000 |
parents | 19bcdc6a9bb8 |
children | e35b034d3523 |
line wrap: on
line source
/* Copyright (C) 2002 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 2, 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, write to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #if defined (__GNUG__) && defined (USE_PRAGMA_INTERFACE_IMPLEMENTATION) #pragma implementation #endif #ifdef HAVE_CONFIG_H #include <config.h> #endif #include <iostream> #include "lo-sstream.h" #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 () { int n = c.length (); lst.resize (n); for (int 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"); int n = lst.length (); if (n > 0) { indent (os); os << "(,"; newline (os); increment_indent_level (); for (int i = 0; i < n; i++) { OSSTREAM buf; buf << "[" << i+1 << "]" << OSSTREAM_ENDS; octave_value val = lst(i); val.print_with_name (os, OSSTREAM_STR (buf)); OSSTREAM_FREEZE (buf); } decrement_indent_level (); indent (os); os << ",)"; } else os << "(,,)"; newline (os); unwind_protect::run_frame ("octave_cs_list_print"); } /* ;;; Local Variables: *** ;;; mode: C++ *** ;;; End: *** */