comparison m-toolbox/classes/@launchBay/launchBay.m @ 0:f0afece42f48

Import.
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Wed, 23 Nov 2011 19:22:13 +0100
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:f0afece42f48
1 % LAUNCHBAY is a graphical user interface for launching the various built
2 % in GUIs of LTPDA.
3 %
4 % CALL: launchBay
5 % launchBay(h) % build the launch bay in the figure with handle, h.
6 %
7 % M Hewitson 24-11-08
8 %
9 % $Id: launchBay.m,v 1.2 2011/04/08 08:56:37 hewitson Exp $
10 %
11 classdef launchBay < handle
12
13 properties
14 handle = [];
15 signals = [];
16 end
17 properties (SetAccess=private, GetAccess=private)
18 Gproperties = [];
19 SigSelected = [];
20 end
21
22 methods
23 function mainfig = launchBay(varargin)
24 % Build the main figure
25 mainfig = buildMainfig(mainfig, varargin{:});
26 % Make the GUI visible.
27 set(mainfig.handle,'Visible','on')
28 end
29 end % End public methods
30
31 methods (Static=true)
32 % Main figure
33 varargout = cb_mainfigClose(varargin);
34
35 end
36
37 methods (Access = private)
38 varargout = buildMainfig(varargin);
39 end
40
41 methods (Access = public)
42 end
43
44 end
45
46 % END