diff scripts/audio/@audiorecorder/get.m @ 19522:ee3ec3f02358

maint: moved @audiorecorder and @audioplayer folders inside the audio folder
author Vytautas Jančauskas <unaudio@gmail.com>
date Wed, 18 Sep 2013 00:16:28 +0300
parents scripts/@audiorecorder/get.m@e1f98e402a7e
children 77b52b86b419
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/scripts/audio/@audiorecorder/get.m	Wed Sep 18 00:16:28 2013 +0300
@@ -0,0 +1,30 @@
+## -*- texinfo -*-
+## @deftypefn{Function File} @var{Value} = get (@var{recorderObj}, @var{Name})
+## Returns the @var{Value} of the property identified by @var{Name}.
+## @deftypefnx{Function File} @var{Values} = get (@var{recorderObj}, @{@var{Name1}, ... , @var{NameN}@})
+## Returns the @var{Values} of the properties identified by @var{Name1} to @var{NameN}.
+## @deftypefnx{Function File} @var{Values} = get (@var{recorderObj})
+## Returns a scalar structure with values of all properties of @var{recorderObj}. 
+## The field names correspond to property names.
+## @end deftypefn
+
+function result = get (varargin)
+  recorder = varargin{1};
+  properties = __get_properties__ (recorder);
+  if nargin == 1
+    result = properties;
+  elseif nargin == 2
+    if ischar (varargin{2})
+      result = getfield (properties, varargin{2});
+    else
+      result = {};
+      index = 1;
+      for property = varargin{2}
+        result{index} = getfield (properties, char(property));
+        index = index + 1;
+      endfor
+    endif
+  else
+    error ('audiorecorder: wrong number of arguments to the get method');
+  endif
+endfunction
\ No newline at end of file