Commit bda1be75 authored by Colin Eles's avatar Colin Eles
Browse files

latest update

git-svn-id: https://groke.mcmaster.ca/svn/grad/colin/trunk/TableTool@6114 57e6efec-57d4-0310-aeb1-a6c144bb1a8b
parent 12e0f333
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -12,6 +12,7 @@ classdef Data < handle
        checked = [];
        open = [];
        fig = [];
        multi_mode = [];
    end
    
    
+1 −1
Original line number Diff line number Diff line
@@ -22,7 +22,7 @@
            copy.function_inputs = object.function_inputs;
            copy.checked = object.checked;
            copy.settings = object.settings;
            
            copy.multi_mode = object.multi_mode;
            
            copy.Grid2 = Grid(2,[]);
            copy.Grid1 = Grid(1,[]);
+2 −1
Original line number Diff line number Diff line
@@ -9,13 +9,14 @@
        %   name:string - Function name
        %   inputs:string - input string
        %   checked:boolean - typecheck status
        function [grid0, grid1, grid2, name, inputs, checked] = getData(object)
        function [grid0, grid1, grid2, name, inputs, checked, multi] = getData(object)
            grid0 = object.Grid0;
            grid1 = object.Grid1;
            grid2 = object.Grid2;
            name = object.function_name;
            inputs = object.function_inputs;
            checked = object.checked;
            multi = object.multi_mode;
        end
    
    
 No newline at end of file
+1 −0
Original line number Diff line number Diff line
@@ -13,6 +13,7 @@
            object.Grid2.new_Cell;
            object.Grid1.new_Cell;
            object.checked = 0;
            object.multi_mode = 0;
        end
        
     
 No newline at end of file
+2 −1
Original line number Diff line number Diff line
@@ -10,13 +10,14 @@
        %   checked:boolean - typecheck status
        % outputs:
        %   none
        function [] = setData(object, grid0, grid1, grid2, name, inputs, checked)
        function [] = setData(object, grid0, grid1, grid2, name, inputs, checked, multi)
            object.Grid0 = grid0;
            object.Grid1 = grid1;
            object.Grid2 = grid2;
            object.function_name = name;
            object.function_inputs = inputs;
            object.checked = checked;
            object.multi_mode = multi;
        end
        
      
 No newline at end of file
Loading