Home > functions > gui > bm_editor > process_parm_editor > process_parm_editor_new.m

process_parm_editor_new

PURPOSE ^

create process_parm_editor object

SYNOPSIS ^

function [obj] = process_parm_editor_new()

DESCRIPTION ^

 create process_parm_editor object
 [USAGE]
    [obj] = process_parm_editor_new;
 [IN]
     none
 [OUT]
    obj : process_parm_editor object

 Copyright (C) 2011, ATR All Rights Reserved.
 License : New BSD License(see VBMEG_LICENSE.txt)

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function [obj] = process_parm_editor_new()
0002 % create process_parm_editor object
0003 % [USAGE]
0004 %    [obj] = process_parm_editor_new;
0005 % [IN]
0006 %     none
0007 % [OUT]
0008 %    obj : process_parm_editor object
0009 %
0010 % Copyright (C) 2011, ATR All Rights Reserved.
0011 % License : New BSD License(see VBMEG_LICENSE.txt)
0012 
0013 obj = struct;
0014 
0015 % set class type
0016 obj.class_type = 'process_parm_editor';
0017 
0018 %
0019 % --- Member initialize
0020 %
0021 
0022 %
0023 % --- After check
0024 %
0025 if nargout ~= 1
0026     error('function caller should receive obj.');
0027 end

Generated on Tue 27-Aug-2013 11:46:04 by m2html © 2005