Skip to content

Commit

Permalink
documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
jooh committed Nov 23, 2014
1 parent 37a8bec commit fc7301e
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions base/Saveable.m
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
% Base class for supporting struct conversion as part of save and load with
% obj2struct and struct2obj. This tends to speed up saving of handle class
% instances. Note that this trick only works with object classes that have
% only public, writeable fields and support initialisation with no input
% arguments.
%
% Saveable < matlab.mixin.Copyable
classdef Saveable < matlab.mixin.Copyable
methods
function outstruct = saveobj(self)
Expand Down

0 comments on commit fc7301e

Please sign in to comment.