Home > functions > gui > bm_editor > bm_edit_app_view > bm_edit_app_view_new.m

bm_edit_app_view_new

PURPOSE ^

create view object.

SYNOPSIS ^

function [obj] = bm_edit_app_view_new

DESCRIPTION ^

 create view object.
 [USAGE]
    [obj] = bm_edit_app_view_new;
 [IN]
    none
 [OUT]
    obj : bm_edit_app_view 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] = bm_edit_app_view_new
0002 % create view object.
0003 % [USAGE]
0004 %    [obj] = bm_edit_app_view_new;
0005 % [IN]
0006 %    none
0007 % [OUT]
0008 %    obj : bm_edit_app_view 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 = 'bm_edit_app_view';
0017 
0018 %
0019 % --- Member initialize
0020 %
0021 obj.h = -1;
0022 
0023 %
0024 % --- After check
0025 %
0026 if nargout ~= 1
0027     error('function caller should receive obj.');
0028 end

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