janklab / MatlabProjectTemplate

A template for creating repos for Matlab library and application projects
BSD 3-Clause "New" or "Revised" License
12 stars 1 forks source link

globals and Settings interfere with "import mypackage.*" #30

Open apjanke opened 3 years ago

apjanke commented 3 years ago

Because globals and Settings are generically named, you can't do an import mypackage.* without likely getting collisions. Maybe we should do something about this? Move them to a subpackage?

Or maybe it's better design if we leave packages to provide their own subpackages specifically designed for import * operations?