CPLMessage.hpp 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * CPLMessage.hpp - interface for the CPLMessage class
  11. *
  12. * Contributor(s):
  13. * Charles Maier <charles.maier@intellon.com>
  14. *
  15. *--------------------------------------------------------------------*/
  16. #ifndef CPLMESSAGE_HEADER
  17. #define CPLMESSAGE_HEADER
  18. /*====================================================================*
  19. * system header files;
  20. *--------------------------------------------------------------------*/
  21. #include <stdint.h>
  22. #include <cstdio>
  23. /*====================================================================*
  24. * custom header files;
  25. *--------------------------------------------------------------------*/
  26. #include "../classes/stdafx.hpp"
  27. /*====================================================================*
  28. * class constants;
  29. *--------------------------------------------------------------------*/
  30. #define CPLMESSAGE_BOOTLOADER
  31. /*====================================================================*
  32. * class declaration;
  33. *--------------------------------------------------------------------*/
  34. class __declspec (dllexport) CPLMessage
  35. {
  36. public:
  37. CPLMessage ();
  38. virtual ~ CPLMessage ();
  39. char const * MessageName (uint16_t type) const;
  40. char const * MessageMode (uint16_t type) const;
  41. char const * MessageErrorText (uint16_t type, uint8_t code) const;
  42. CPLMessage & CSV ();
  43. CPLMessage & HTML ();
  44. private:
  45. static struct name
  46. {
  47. uint16_t type;
  48. char const * name;
  49. }
  50. names [];
  51. static char const * modes [];
  52. static struct code
  53. {
  54. uint16_t type;
  55. uint8_t code;
  56. char const * text;
  57. }
  58. mcodes [];
  59. };
  60. /*====================================================================*
  61. * end definition;
  62. *--------------------------------------------------------------------*/
  63. #endif