view m-toolbox/classes/@LTPDAworkbench/cb_openRepoManagerGUI.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
parents f0afece42f48
children a26669b59d7e
line wrap: on
line source

% CB_OPENREPOMANAGERGUI opens the repository manager GUI
%
% CALL: LTPDAworkbench.cb_openRepoManagerGUI
%
% Diepholz 19-01-2010
%
% $Id: cb_openRepoManagerGUI.m,v 1.2 2010/08/06 19:10:48 ingo Exp $
%
function cb_openRepoManagerGUI(varargin)
  
  rm = LTPDARepositoryManager();
  rm.showGui();
  rm.gui.toFront();
  
end