view m-toolbox/classes/+utils/@modules/modules.m @ 50:7d2e2e065cf1
database-connection-manager
Update unit tests
author |
Daniele Nicolodi <nicolodi@science.unitn.it> |
date |
Wed, 07 Dec 2011 17:24:37 +0100 (2011-12-07) |
parents |
f0afece42f48 |
children |
|
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