comparison +mpm/MatlabPathManager.m @ 29:91724783a931

Remove unneeded methods
author Jonatan Werpers <jonatan@werpers.com>
date Tue, 18 Sep 2018 13:19:38 +0200
parents 0842a1b2ac7e
children d9f899b1dfd0
comparison
equal deleted inserted replaced
28:0842a1b2ac7e 29:91724783a931
57 % TODO: Make it respect order from the matlab path 57 % TODO: Make it respect order from the matlab path
58 end 58 end
59 59
60 function ps = matlabPath(obj) 60 function ps = matlabPath(obj)
61 ps = split(path(), pathsep); 61 ps = split(path(), pathsep);
62 end
63
64 % Return all subpaths loaded into the matlab path, mimicing the order they appear there.
65 function s = pathStatus(obj)
66 end
67
68 % Return all subpaths in the project and if they are active on the matlab path or not.
69 function s = projectStatus(obj, projectFolder)
70 end 62 end
71 63
72 % Load all subpaths for a project 64 % Load all subpaths for a project
73 function checkin(obj, projectFolder) 65 function checkin(obj, projectFolder)
74 sp = obj.projectSubpaths(projectFolder); 66 sp = obj.projectSubpaths(projectFolder);