view m-toolbox/classes/+utils/@helper/isinfocall.m @ 1:2014ba5b353a
database-connection-manager
Remove old code
author
Daniele Nicolodi <nicolodi@science.unitn.it>
date
Sat, 03 Dec 2011 18:13:55 +0100 (2011-12-03)
parents
f0afece42f48
children
line source
+ − % ISINFOCALL defines the condition for an 'info' call
+ − %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+ − %
+ − % DESCRIPTION: ISINFOCALL defines the condition for an 'info' call
+ − %
+ − % CALL: out = isinfocall(varargin{:})
+ − %
+ − % VERSION: $Id: isinfocall.m,v 1.3 2011/02/22 15:42:46 hewitson Exp $
+ − %
+ − % HISTORY: 11-07-2008 Diepholz
+ − % Creation
+ − %
+ − %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+ −
+ − function out = isinfocall(varargin)
+ −
+ − % Check if this is a call for parameters
+ − if nargin == 3
+ − if ischar(varargin{2}) && ischar(varargin{3}) && strcmp(varargin{2}, 'INFO')
+ − out = true;
+ − return
+ − end
+ − end
+ − out = false;
+ − end
+ −