Skip to content

Commit

Permalink
--rename Class template for object attributes manager
Browse files Browse the repository at this point in the history
--'abstract' and 'base' are redundant here, so renamed to match name of class template.
  • Loading branch information
jturner65 committed Aug 7, 2023
1 parent c6790a4 commit e303793
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/esp/metadata/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ set(
attributes/StageAttributes.h
attributes/StageAttributes.cpp
managers/AttributesManagerBase.h
managers/AbstractObjectAttributesManagerBase.h
managers/AbstractObjectAttributesManager.h
managers/AssetAttributesManager.h
managers/AssetAttributesManager.cpp
managers/LightLayoutAttributesManager.h
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
// This source code is licensed under the MIT license found in the
// LICENSE file in the root directory of this source tree.

#ifndef ESP_METADATA_MANAGERS_ABSTRACTOBJECTATTRIBUTESMANAGERBASE_H_
#define ESP_METADATA_MANAGERS_ABSTRACTOBJECTATTRIBUTESMANAGERBASE_H_
#ifndef ESP_METADATA_MANAGERS_ABSTRACTOBJECTATTRIBUTESMANAGER_H_
#define ESP_METADATA_MANAGERS_ABSTRACTOBJECTATTRIBUTESMANAGER_H_

/** @file
* @brief Class Template @ref
Expand Down Expand Up @@ -427,4 +427,4 @@ AbstractObjectAttributesManager<T, Access>::setJSONAssetHandleAndType(
} // namespace managers
} // namespace metadata
} // namespace esp
#endif // ESP_METADATA_MANAGERS_ABSTRACTOBJECTATTRIBUTESMANAGERBASE_H_
#endif // ESP_METADATA_MANAGERS_ABSTRACTOBJECTATTRIBUTESMANAGER_H_
2 changes: 1 addition & 1 deletion src/esp/metadata/managers/ObjectAttributesManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

#include <utility>

#include "AbstractObjectAttributesManagerBase.h"
#include "AbstractObjectAttributesManager.h"
#include "esp/metadata/attributes/ObjectAttributes.h"

namespace esp {
Expand Down
2 changes: 1 addition & 1 deletion src/esp/metadata/managers/StageAttributesManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

#include <utility>

#include "AbstractObjectAttributesManagerBase.h"
#include "AbstractObjectAttributesManager.h"
#include "StageAttributesManager.h"

#include "esp/assets/Asset.h"
Expand Down
2 changes: 1 addition & 1 deletion src/esp/metadata/managers/StageAttributesManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#ifndef ESP_METADATA_MANAGERS_STAGEATTRIBUTEMANAGER_H_
#define ESP_METADATA_MANAGERS_STAGEATTRIBUTEMANAGER_H_

#include "AbstractObjectAttributesManagerBase.h"
#include "AbstractObjectAttributesManager.h"
#include "esp/metadata/attributes/StageAttributes.h"

#include "PhysicsAttributesManager.h"
Expand Down

0 comments on commit e303793

Please sign in to comment.