Remove unused code & refactor and simplify event load timing

This commit is contained in:
Nik Bougalis
2017-01-17 15:20:24 -08:00
parent 8345475bc3
commit 15a30c745c
19 changed files with 97 additions and 665 deletions

View File

@@ -150,11 +150,13 @@ public:
// VFALCO TODO Rename these to newLoadEventMeasurement or something similar
// since they create the object.
LoadEvent::pointer getLoadEvent (JobType t, std::string const& name);
std::shared_ptr<LoadEvent>
getLoadEvent (JobType t, std::string const& name);
// VFALCO TODO Why do we need two versions, one which returns a shared
// pointer and the other which returns an autoptr?
LoadEvent::autoptr getLoadEventAP (JobType t, std::string const& name);
std::unique_ptr <LoadEvent>
getLoadEventAP (JobType t, std::string const& name);
/** Add multiple load events.
*/