PageRenderTime 31ms CodeModel.GetById 18ms RepoModel.GetById 0ms app.codeStats 0ms

/indra/llcommon/metaclasst.h

https://bitbucket.org/lindenlab/viewer-beta/
C++ Header | 60 lines | 26 code | 10 blank | 24 comment | 0 complexity | 3fbb19ee04912a5b791f0f837f18ede9 MD5 | raw file
Possible License(s): LGPL-2.1
  1. /**
  2. * @file metaclasst.h
  3. *
  4. * $LicenseInfo:firstyear=2006&license=viewerlgpl$
  5. * Second Life Viewer Source Code
  6. * Copyright (C) 2010, Linden Research, Inc.
  7. *
  8. * This library is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU Lesser General Public
  10. * License as published by the Free Software Foundation;
  11. * version 2.1 of the License only.
  12. *
  13. * This library is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * Lesser General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with this library; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  21. *
  22. * Linden Research, Inc., 945 Battery Street, San Francisco, CA 94111 USA
  23. * $/LicenseInfo$
  24. */
  25. #ifndef LL_METACLASST_H
  26. #define LL_METACLASST_H
  27. #include "metaclass.h"
  28. template<class TObject>
  29. class LLMetaClassT : public LLMetaClass
  30. {
  31. public:
  32. virtual ~LLMetaClassT() {;}
  33. static const LLMetaClassT& instance()
  34. {
  35. static const LLMetaClassT& instance = buildMetaClass();
  36. return instance;
  37. }
  38. private:
  39. static const LLMetaClassT& buildMetaClass()
  40. {
  41. LLMetaClassT& meta_class = *(new LLMetaClassT());
  42. reflectProperties(meta_class);
  43. return meta_class;
  44. }
  45. LLMetaClassT() {;}
  46. static void reflectProperties(LLMetaClass&)
  47. {
  48. }
  49. };
  50. #endif // LL_METACLASST_H