container: root: common: utility: refactor/deprecate, add/enhance free functions, refactor/add tests #249
Reference in New Issue
Block a user
Delete Branch "refs/pull/249/head"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Description
CommandNotes on file loading (and general file handlers):
The interpreter command
.Lwill load files but appears to not fail ifthe file isn't source code or a library.
Calling
gSystem->Load()will load a given library but not source file,and appears to not accept paths (which will be needed for pluggables).
Because
gInterpreter->LoadFile("path")will load either a source fileor library by given "path", and is consistent with
dfi's approach topath handling, this function appears to be the winner (for now).
Agreement
All tests pass.