Symphony-DAS / symphony-matlab

Symphony Data Acquisition System
http://symphony-das.github.io
MIT License
19 stars 5 forks source link

Add support for class (@) folders #49

Open cafarm opened 4 years ago

cafarm commented 4 years ago

Per Khris:

I've found myself desiring a specific enhancement where Symphony would support class folders. If anyone else wants it, here is the change I've made on our local machines. It doesn't require recompiling Symphony-core so I've just modified our Symphony installer (.mlappinstall) rather than repackaging it. Obviously, this will revert if an update comes out.

The original line (74) is: elseif ~isempty(name) && name(1) == '+'

And I've changed it to: elseif ~isempty(name) && (name(1) == '+' || name(1) == '@')