PageRenderTime 78ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 0ms

/indra/llcommon/metaclass.cpp

https://bitbucket.org/lindenlab/viewer-beta/
C++ | 81 lines | 40 code | 12 blank | 29 comment | 3 complexity | 465eee00efe1ba823b4a2ee206ddf717 MD5 | raw file
Possible License(s): LGPL-2.1
  1. /**
  2. * @file metaclass.cpp
  3. * @author Babbage
  4. * @date 2006-05-15
  5. * @brief Implementation of LLMetaClass
  6. *
  7. * $LicenseInfo:firstyear=2006&license=viewerlgpl$
  8. * Second Life Viewer Source Code
  9. * Copyright (C) 2010, Linden Research, Inc.
  10. *
  11. * This library is free software; you can redistribute it and/or
  12. * modify it under the terms of the GNU Lesser General Public
  13. * License as published by the Free Software Foundation;
  14. * version 2.1 of the License only.
  15. *
  16. * This library is distributed in the hope that it will be useful,
  17. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  19. * Lesser General Public License for more details.
  20. *
  21. * You should have received a copy of the GNU Lesser General Public
  22. * License along with this library; if not, write to the Free Software
  23. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  24. *
  25. * Linden Research, Inc., 945 Battery Street, San Francisco, CA 94111 USA
  26. * $/LicenseInfo$
  27. */
  28. #include "linden_common.h"
  29. #include "metaclass.h"
  30. #include "metaproperty.h"
  31. #include "reflective.h"
  32. LLMetaClass::LLMetaClass()
  33. {
  34. }
  35. //virtual
  36. LLMetaClass::~LLMetaClass()
  37. {
  38. }
  39. const LLMetaProperty* LLMetaClass::findProperty(const std::string& name) const
  40. {
  41. PropertyIterator iter = mProperties.find(name);
  42. if(iter == mProperties.end())
  43. {
  44. return NULL;
  45. }
  46. return (*iter).second;
  47. }
  48. void LLMetaClass::addProperty(const LLMetaProperty* property)
  49. {
  50. mProperties.insert(std::make_pair(property->getName(), property));
  51. }
  52. U32 LLMetaClass::getPropertyCount() const
  53. {
  54. return mProperties.size();
  55. }
  56. LLMetaClass::PropertyIterator LLMetaClass::beginProperties() const
  57. {
  58. return mProperties.begin();
  59. }
  60. LLMetaClass::PropertyIterator LLMetaClass::endProperties() const
  61. {
  62. return mProperties.end();
  63. }
  64. bool LLMetaClass::isInstance(const LLReflective* object) const
  65. {
  66. // TODO: Babbage: Search through super classes of objects MetaClass.
  67. const LLMetaClass* object_meta_class = &(object->getMetaClass());
  68. return (object_meta_class == this);
  69. }