IHandlerBase.cpp 760 B

12345678910111213141516171819202122232425262728
  1. /*
  2. * IHandlerBase.cpp, part of VCMI engine
  3. *
  4. * Authors: listed in file AUTHORS in main folder
  5. *
  6. * License: GNU General Public License v2.0 or later
  7. * Full text of license available in license.txt file, in main folder
  8. *
  9. */
  10. #include "StdInc.h"
  11. #include "IHandlerBase.h"
  12. #include "CModHandler.h"
  13. VCMI_LIB_NAMESPACE_BEGIN
  14. void IHandlerBase::registerObject(std::string scope, std::string type_name, std::string name, si32 index)
  15. {
  16. return VLC->modh->identifiers.registerObject(scope, type_name, name, index);
  17. }
  18. std::string IHandlerBase::normalizeIdentifier(const std::string& scope, const std::string& remoteScope, const std::string& identifier) const
  19. {
  20. return VLC->modh->normalizeIdentifier(scope, remoteScope, identifier);
  21. }
  22. VCMI_LIB_NAMESPACE_END