view m-toolbox/classes/+utils/@helper/isinfocall.m @ 52:daf4eab1a51e database-connection-manager tip

Fix. Default password should be [] not an empty string
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Wed, 07 Dec 2011 17:29:47 +0100
parents f0afece42f48
children
line wrap: on
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