view scripts/audio/@audioplayer/disp.m @ 23351:5ea6c6d0c2db

Use octave_base_value::print_name_tag for old style classes (bug #50640). * ov-class.cc (octave_class::print_name_tag): Remove code for overloading print and call octave_base_value::print_name_tag() instead. * scripts/@ftp/disp.m, scripts/audio/@audioplayer/disp.m, scripts/audio/@audiorecorder/disp.m: Remove trailing newline from disp() routines for old-style classes.
author Rik <rik@octave.org>
date Wed, 05 Apr 2017 14:11:18 -0700
parents f04f32f08590
children 194eb4bd202b
line wrap: on
line source

## Copyright (C) 2017 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/>.

## -*- texinfo -*-
## @deftypefn {} {} disp (@var{player})
## Display the properties of the audioplayer object @var{player}.
## @end deftypefn

function disp (player)

  if (nargin != 1)
    print_usage ();
  endif

  printf ("audioplayer object with properties:\n\n");
  for [val, prop] = __get_properties__ (player)
    printf ("  %s = ", prop), disp (val);
  endfor

endfunction