Skip to content

Commit

Permalink
Add an alias for getByAlias
Browse files Browse the repository at this point in the history
    * The *real* interface is get_by_alias. So add it.
  • Loading branch information
yolandab committed Mar 6, 2024
1 parent 8539c27 commit 81e77b8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions hecuba_core/src/api/IStorage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -623,6 +623,10 @@ void IStorage::getByAlias(const std::string& name) {
HecubaExtrae_event(HECUBAEV, HECUBA_END);
}

void IStorage::get_by_alias(const std::string& name) {
getByAlias(name);
}

void IStorage::initializeClassName(std::string class_name) {
std::string FQname;
bool new_element = true;
Expand Down

0 comments on commit 81e77b8

Please sign in to comment.