Skip to content
Snippets Groups Projects
Commit ad0c2c32 authored by Federico Felici's avatar Federico Felici
Browse files

Add top-level interfacing class

parent 032167c3
No related branches found
No related tags found
No related merge requests found
classdef SCD
% main interface class just to get expcode
% E = SCD.load(expcode);
properties (Access = private)
E % expcode
SCDexps % expcode code container
end
methods (Static)
function E=load(expcode)
% Creating the experimental code container class
SCDexps = SCD.getexpcodecontainer();
E = SCDexps.getbymaincode(expcode);
end
function help()
SCDexps = SCD.getexpcodecontainer();
SCDexps.printexpcodes;
end
function list()
SCD.help;
end
function SCDexps = getexpcodecontainer()
SCDexps = SCDconf_createexpcodes;
end
end
end
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment