Mercurial > hg > ltpda
annotate m-toolbox/classes/@LTPDAworkbench/skipForward.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 |
rev | line source |
---|---|
0 | 1 % SKIPFORWARD step forward one step in current pipeline without executing |
2 % that step. | |
3 % | |
4 % CALL: wb.skipForward | |
5 % | |
6 % M Hewitson 13-11-08 | |
7 % | |
8 % $Id: skipForward.m,v 1.2 2010/08/06 19:10:49 ingo Exp $ | |
9 % | |
10 function skipForward(varargin) | |
11 | |
12 wb = varargin{1}; | |
13 awtinvoke(wb.mp, 'stepForwardCurrentPipeline'); | |
14 wb.executing = false; | |
15 | |
16 end |