MatrixBerryCore
StructChangeTrackerEmptyPlug.m
Go to the documentation of this file.
1 classdef StructChangeTrackerEmptyPlug<mxberry.core.struct.AStructChangeTracker
2  methods
3  function self=StructChangeTrackerEmptyPlug()
4  end
5  function SInput=applyPatches(~,SInput,~,~,~)
6  end
7  function [SInput,confVersion]=applyAllLaterPatches(~,SInput,confVersion)
8  end
9  function lastRev=getLastRevision(~)
10  lastRev=-Inf;
11  end
12  end
13 end