view m-toolbox/classes/+utils/@modules/modules.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

% MODULES helper class for LTPDA extension modules.
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% DESCRIPTION: MODULES helper class for LTPDA extension modules.
%
% To see the available static methods, call
%
% >> methods utils.modules
%
% HISTORY: M Hewitson 21-01-11
%              Creation
%
% VERSION: $Id: modules.m,v 1.2 2011/03/28 11:27:13 hewitson Exp $
%
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

classdef modules
  
  %------------------------------------------------
  %--------- Declaration of Static methods --------
  %------------------------------------------------
  methods (Static)
    
    varargout = buildModule(varargin)
    varargout = moduleInfo(varargin)
    
  end
  
end
% END