messagedef.cc 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. // File created from messagedef.mes on Tue Feb 8 18:01:54 2011
  2. #include <cstddef>
  3. #include <log/message_initializer.h>
  4. namespace {
  5. const char* values[] = {
  6. "DUPLNS", "duplicate $NAMESPACE directive found",
  7. "DUPLPRFX", "duplicate $PREFIX directive found",
  8. "IDNOTFND", "could not replace message for '%s': no such message identification",
  9. "NSEXTRARG", "$NAMESPACE directive has too many arguments",
  10. "NSINVARG", "$NAMESPACE directive has an invalid argument ('%s')",
  11. "NSNOARG", "no arguments were given to the $NAMESPACE directive",
  12. "ONETOKEN", "a line containing a message ID ('%s') and nothing else was found",
  13. "OPENIN", "unable to open message file %s for input: %s",
  14. "OPENOUT", "unable to open %s for output: %s",
  15. "PRFEXTRARG", "$PREFIX directive has too many arguments",
  16. "PRFINVARG", "$PREFIX directive has an invalid argument ('%s')",
  17. "PRFNOARG", "no arguments were given to the $PREFIX directive",
  18. "READERR", "error reading from %s: %s",
  19. "UNRECDIR", "unrecognised directive '%s'",
  20. "WRITERR", "error writing to %s: %s",
  21. NULL
  22. };
  23. } // Anonymous namespace
  24. namespace isc {
  25. namespace log {
  26. MessageInitializer messagedef_cc_Tue_Feb__8_18_01_54_2011(values);
  27. } // namespace log
  28. } // namespace isc