view scripts/audio/@audioplayer/resume.m @ 19571:3b0a9a832360

* @audioplayer/resume.m: Fix nargin check.
author John W. Eaton <jwe@octave.org>
date Mon, 05 Jan 2015 17:44:00 -0500
parents 5802ea7037d4
children 4197fc428c7d
line wrap: on
line source

## Copyright (C) 2013 Vytautas JanĨauskas
##
## 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 {Function File} {} resume (@var{player})
## Resume playback for the paused audioplayer object @var{player}.
## @end deftypefn

function resume (player)

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

  __player_resume__ (struct (player).player);

endfunction