Skip to content
Snippets Groups Projects
Commit f8d145c9 authored by Cristian Galperti's avatar Cristian Galperti
Browse files

connection class name . -> -

parent afa28f33
No related branches found
No related tags found
No related merge requests found
......@@ -298,7 +298,8 @@ classdef SCDclass_mdspar < matlab.mixin.Heterogeneous
function str = genMARTe2MDSsourcestr(obj)
%str = sprintf(' +MDSSource = {\n Class=SPCMDSSource\n Server=%s\n Tree=%s',obj.mdsserver,obj.mdstree);
str = sprintf(' +Connection_%s_%s = {\n Class=MDSObjConnection\n Server=%s\n Tree=%s',obj.mdsserver,obj.mdstree,obj.mdsserver,obj.mdstree);
str = sprintf(' +Connection_%s_%s = {\n Class=MDSObjConnection\n Server="%s"\n Tree="%s"',...
strrep(obj.mdsserver,'.','-'),strrep(obj.mdstree,'.','-'),obj.mdsserver,obj.mdstree);
end
function str = genMARTe2MDStdiexpression(obj)
......
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