comparison scripts/general/inputParser.m @ 21578:683a1beee538

maint: Use "FIXME:" for all code blocks needing further attention. * files-dock-widget.cc, file-editor-tab.cc, file-editor-tab.h, file-editor.cc, octave-qscintilla.cc, octave-qt-link.cc, __ilu__.cc, debug.h, oct-stream.cc, pt-jit.cc, __magick_read__.cc, ov-classdef.cc, pt-stmt.cc, oct-sort.cc, inputParser.m, validateattributes.m, fminunc.m, fsolve.m, fzero.m, __scatter__.m, print.m: Use "FIXME:" for all code blocks needing further attention.
author Rik <rik@octave.org>
date Fri, 01 Apr 2016 14:55:13 -0700
parents 3d60ed163b70
children ecce63c99c3f
comparison
equal deleted inserted replaced
21577:31823239207e 21578:683a1beee538
243 243
244 ## Author: Carnë Draug <carandraug@octave.org> 244 ## Author: Carnë Draug <carandraug@octave.org>
245 245
246 classdef inputParser < handle 246 classdef inputParser < handle
247 properties 247 properties
248 ## TODO set input checking for this properties 248 ## FIXME: set input checking for these properties
249 CaseSensitive = false; 249 CaseSensitive = false;
250 FunctionName = ""; 250 FunctionName = "";
251 KeepUnmatched = false; 251 KeepUnmatched = false;
252 # PartialMatching = true; # TODO unimplemented 252 # PartialMatching = true; # FIXME: unimplemented
253 # StructExpand = true; # TODO unimplemented 253 # StructExpand = true; # FIXME: unimplemented
254 endproperties 254 endproperties
255 255
256 properties (SetAccess = protected) 256 properties (SetAccess = protected)
257 Parameters = cell (); 257 Parameters = cell ();
258 Results = struct (); 258 Results = struct ();