I found these defined in src/dom/impl/DOMImplementationImpl.cpp, but I imagine that
these constants are implementation-dependant. I don't see any mandatory features in
the w3c spec
(http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core.html#ID-102161490).
static const XMLCh gXML[] = // Points to "XML"
{chLatin_X, chLatin_M, chLatin_L, chNull};
static const XMLCh g1_0[] = // Points to "1.0"
{chDigit_1, chPeriod, chDigit_0, chNull};
static const XMLCh g2_0[] = // Points to "2.0"
{chDigit_2, chPeriod, chDigit_0, chNull};
static const XMLCh g3_0[] = // Points to "3.0"
{chDigit_3, chPeriod, chDigit_0, chNull};
static const XMLCh gTrav[] = // Points to "Traversal"
{chLatin_T, chLatin_r, chLatin_a, chLatin_v, chLatin_e, chLatin_r,
chLatin_s, chLatin_a, chLatin_l, chNull};
static const XMLCh gCore[] = // Points to "Core"
{chLatin_C, chLatin_o, chLatin_r, chLatin_e, chNull};
static const XMLCh gRange[] = // Points to "Range"
{chLatin_R, chLatin_a, chLatin_n, chLatin_g, chLatin_e, 0};
static const XMLCh gLS[] = // Points to "LS"
{chLatin_L, chLatin_S, chNull};
Adam Heinz
Senior Software Developer
Exstream Software
-----Original Message-----
From: Nick Bastin [mailto:[EMAIL PROTECTED]
Sent: Wednesday, April 21, 2004 10:19 AM
To: [EMAIL PROTECTED]
Subject: List of DOM Implementation features?
Is there a list of features in the documentation anywhere that are
valid strings to pass to
DOMImplementationRegistry->getDOMImplementation()?
--
Nick
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]