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

/indra/llmessage/llmsgvariabletype.h

https://bitbucket.org/lindenlab/viewer-beta/
C++ Header | 59 lines | 31 code | 3 blank | 25 comment | 0 complexity | eb22502fb3cc9c0dba2c1b1a75bd450e MD5 | raw file
Possible License(s): LGPL-2.1
  1. /**
  2. * @file llmsgvariabletype.h
  3. * @brief Declaration of the EMsgVariableType enumeration.
  4. *
  5. * $LicenseInfo:firstyear=2007&license=viewerlgpl$
  6. * Second Life Viewer Source Code
  7. * Copyright (C) 2010, Linden Research, Inc.
  8. *
  9. * This library is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU Lesser General Public
  11. * License as published by the Free Software Foundation;
  12. * version 2.1 of the License only.
  13. *
  14. * This library is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  17. * Lesser General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Lesser General Public
  20. * License along with this library; if not, write to the Free Software
  21. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  22. *
  23. * Linden Research, Inc., 945 Battery Street, San Francisco, CA 94111 USA
  24. * $/LicenseInfo$
  25. */
  26. #ifndef LL_LLMSGVARIABLETYPE_H
  27. #define LL_LLMSGVARIABLETYPE_H
  28. typedef enum e_message_variable_type
  29. {
  30. MVT_NULL,
  31. MVT_FIXED,
  32. MVT_VARIABLE,
  33. MVT_U8,
  34. MVT_U16,
  35. MVT_U32,
  36. MVT_U64,
  37. MVT_S8,
  38. MVT_S16,
  39. MVT_S32,
  40. MVT_S64,
  41. MVT_F32,
  42. MVT_F64,
  43. MVT_LLVector3,
  44. MVT_LLVector3d,
  45. MVT_LLVector4,
  46. MVT_LLQuaternion,
  47. MVT_LLUUID,
  48. MVT_BOOL,
  49. MVT_IP_ADDR,
  50. MVT_IP_PORT,
  51. MVT_U16Vec3,
  52. MVT_U16Quat,
  53. MVT_S16Array,
  54. MVT_EOL
  55. } EMsgVariableType;
  56. #endif // LL_LLMSGVARIABLETYPE_H