xmlconstants.h 953 B

123456789101112131415161718192021222324252627282930
  1. /*
  2. * Copyright 2004 The WebRTC Project Authors. All rights reserved.
  3. *
  4. * Use of this source code is governed by a BSD-style license
  5. * that can be found in the LICENSE file in the root of the source
  6. * tree. An additional intellectual property rights grant can be found
  7. * in the file PATENTS. All contributing project authors may
  8. * be found in the AUTHORS file in the root of the source tree.
  9. */
  10. #ifndef THIRD_PARTY_LIBJINGLE_XMPP_XMLLITE_XMLCONSTANTS_H_
  11. #define THIRD_PARTY_LIBJINGLE_XMPP_XMLLITE_XMLCONSTANTS_H_
  12. #include "third_party/libjingle_xmpp/xmllite/qname.h"
  13. namespace jingle_xmpp {
  14. extern const char STR_EMPTY[];
  15. extern const char NS_XML[];
  16. extern const char NS_XMLNS[];
  17. extern const char STR_XMLNS[];
  18. extern const char STR_XML[];
  19. extern const char STR_VERSION[];
  20. extern const char STR_ENCODING[];
  21. extern const StaticQName QN_XMLNS;
  22. } // namespace jingle_xmpp
  23. #endif // THIRD_PARTY_LIBJINGLE_XMPP_XMLLITE_XMLCONSTANTS_H_