blob: 504799869bcb87c4c2207a5b74b6c41c1849ed0d [file] [log] [blame]
<HTML><HEAD><TITLE>Xalan-C++ API Documentation</TITLE></HEAD>
<BODY>
<h2 align="center">Xalan-C++ API Documentation</h2>
<h3 align="center">The Xalan C++ XSLT Processor Version 1.10</h3>
</BODY>
<!-- Generated by Doxygen 1.2.8.1 -->
<center>
<a class="qindex" href="index.html">Main Page</a> &nbsp; <a class="qindex" href="hierarchy.html">Class Hierarchy</a> &nbsp; <a class="qindex" href="classes.html">Alphabetical List</a> &nbsp; <a class="qindex" href="annotated.html">Compound List</a> &nbsp; <a class="qindex" href="files.html">File List</a> &nbsp; <a class="qindex" href="functions.html">Compound Members</a> &nbsp; <a class="qindex" href="globals.html">File Members</a> &nbsp; </center>
<hr><h1>ResultNamespacesStack.hpp</h1><a href="ResultNamespacesStack_8hpp.html">Go to the documentation of this file.</a><div class="fragment"><pre>00001 <font class="comment">/*</font>
00002 <font class="comment"> * Copyright 1999-2004 The Apache Software Foundation.</font>
00003 <font class="comment"> *</font>
00004 <font class="comment"> * Licensed under the Apache License, Version 2.0 (the "License");</font>
00005 <font class="comment"> * you may not use this file except in compliance with the License.</font>
00006 <font class="comment"> * You may obtain a copy of the License at</font>
00007 <font class="comment"> *</font>
00008 <font class="comment"> * http://www.apache.org/licenses/LICENSE-2.0</font>
00009 <font class="comment"> *</font>
00010 <font class="comment"> * Unless required by applicable law or agreed to in writing, software</font>
00011 <font class="comment"> * distributed under the License is distributed on an "AS IS" BASIS,</font>
00012 <font class="comment"> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</font>
00013 <font class="comment"> * See the License for the specific language governing permissions and</font>
00014 <font class="comment"> * limitations under the License.</font>
00015 <font class="comment"> */</font>
00016 <font class="preprocessor">#if !defined(XALAN_RESULTNAMESPACESSTACK_HEADER_GUARD)</font>
<a name="l00017"></a><a class="code" href="ResultNamespacesStack_8hpp.html#a0">00017</a> <font class="preprocessor"></font><font class="preprocessor">#define XALAN_RESULTNAMESPACESSTACK_HEADER_GUARD</font>
00018 <font class="preprocessor"></font>
00019
00020
00021 <font class="comment">// Base include file. Must be first.</font>
00022 <font class="preprocessor">#include &lt;<a class="code" href="XSLTDefinitions_8hpp.html">xalanc/XSLT/XSLTDefinitions.hpp</a>&gt;</font>
00023
00024
00025
00026 <font class="preprocessor">#include &lt;<a class="code" href="XalanVector_8hpp.html">xalanc/Include/XalanVector.hpp</a>&gt;</font>
00027
00028
00029
00030 <font class="preprocessor">#include &lt;<a class="code" href="XalanDOMString_8hpp.html">xalanc/XalanDOM/XalanDOMString.hpp</a>&gt;</font>
00031
00032
00033
00034 <font class="preprocessor">#include &lt;<a class="code" href="XalanQName_8hpp.html">xalanc/XPath/XalanQName.hpp</a>&gt;</font>
00035
00036
00037
00038 XALAN_CPP_NAMESPACE_BEGIN
00039
00040
00041
<a name="l00042"></a><a class="code" href="classResultNamespacesStack.html">00042</a> <font class="keyword">class </font>XALAN_XSLT_EXPORT <a class="code" href="classResultNamespacesStack.html">ResultNamespacesStack</a>
00043 {
00044 <font class="keyword">public</font>:
00045
00046
00047 <font class="preprocessor">#if defined(XALAN_USE_DEQUE_FOR_VECTOR_BOOL)</font>
00048 <font class="preprocessor"></font><font class="preprocessor"> #if defined(XALAN_NO_STD_NAMESPACE)</font>
00049 <font class="preprocessor"></font> <font class="keyword">typedef</font> deque&lt;bool&gt; BoolVectorType;
00050 <font class="preprocessor"> #else</font>
00051 <font class="preprocessor"></font> <font class="keyword">typedef</font> std::deque&lt;bool&gt; BoolVectorType;
00052 <font class="preprocessor"> #endif</font>
00053 <font class="preprocessor"></font><font class="preprocessor">#else</font>
<a name="l00054"></a><a class="code" href="classResultNamespacesStack.html#s0">00054</a> <font class="preprocessor"></font> <font class="keyword">typedef</font> XalanVector&lt;bool&gt; BoolVectorType;
00055 <font class="preprocessor">#endif</font>
00056 <font class="preprocessor"></font>
<a name="l00057"></a><a class="code" href="classResultNamespacesStack.html#s1">00057</a> <font class="keyword">typedef</font> XalanQName::NamespaceVectorType <a class="code" href="classXalanDeque.html">NamespaceVectorType</a>;
<a name="l00058"></a><a class="code" href="classResultNamespacesStack.html#s2">00058</a> <font class="keyword">typedef</font> XalanQName::NamespacesStackType <a class="code" href="classXalanDeque.html">NamespacesStackType</a>;
00059
<a name="l00060"></a><a class="code" href="classResultNamespacesStack.html#s3">00060</a> <font class="keyword">typedef</font> NamespacesStackType::size_type size_type;
00061
00062
00063 <font class="keyword">explicit</font>
00064 <a class="code" href="classResultNamespacesStack.html#a0">ResultNamespacesStack</a>(MemoryManagerType&amp; theManager);
00065
00066 <a class="code" href="classResultNamespacesStack.html#a1">~ResultNamespacesStack</a>();
00067
00068 <font class="keywordtype">void</font>
<a name="l00069"></a><a class="code" href="classResultNamespacesStack.html#a2">00069</a> <a class="code" href="classResultNamespacesStack.html#a2">addDeclaration</a>(
00070 <font class="keyword">const</font> <a class="code" href="classXalanDOMString.html">XalanDOMString</a>&amp; thePrefix,
00071 <font class="keyword">const</font> <a class="code" href="classXalanDOMString.html">XalanDOMString</a>&amp; theNamespaceURI)<font class="keyword"></font>
00072 <font class="keyword"> </font>{
00073 <a class="code" href="classResultNamespacesStack.html#a2">addDeclaration</a>(
00074 thePrefix,
00075 theNamespaceURI.<a class="code" href="classXalanDOMString.html#a33">c_str</a>(),
00076 theNamespaceURI.<a class="code" href="classXalanDOMString.html#a20">length</a>());
00077 }
00078
00079 <font class="keywordtype">void</font>
<a name="l00080"></a><a class="code" href="classResultNamespacesStack.html#a3">00080</a> <a class="code" href="classResultNamespacesStack.html#a2">addDeclaration</a>(
00081 <font class="keyword">const</font> <a class="code" href="classXalanDOMString.html">XalanDOMString</a>&amp; thePrefix,
00082 <font class="keyword">const</font> XalanDOMChar* theNamespaceURI)<font class="keyword"></font>
00083 <font class="keyword"> </font>{
00084 <a class="code" href="classResultNamespacesStack.html#a2">addDeclaration</a>(
00085 thePrefix,
00086 theNamespaceURI,
00087 <a class="code" href="DOMStringHelper_8hpp.html#a14">length</a>(theNamespaceURI));
00088 }
00089
00090 <font class="keywordtype">void</font>
00091 <a class="code" href="classResultNamespacesStack.html#a2">addDeclaration</a>(
00092 <font class="keyword">const</font> <a class="code" href="classXalanDOMString.html">XalanDOMString</a>&amp; thePrefix,
00093 <font class="keyword">const</font> XalanDOMChar* theNamespaceURI,
00094 XalanDOMString::size_type theLength);
00095
00096 <font class="keywordtype">void</font>
00097 <a class="code" href="classResultNamespacesStack.html#a5">pushContext</a>();
00098
00099 <font class="keywordtype">void</font>
00100 <a class="code" href="classResultNamespacesStack.html#a6">popContext</a>();
00101
00102 <font class="keyword">const</font> <a class="code" href="classXalanDOMString.html">XalanDOMString</a>*
00103 <a class="code" href="classResultNamespacesStack.html#a7">getNamespaceForPrefix</a>(<font class="keyword">const</font> <a class="code" href="classXalanDOMString.html">XalanDOMString</a>&amp; thePrefix) <font class="keyword">const</font>;
00104
00105 <font class="keyword">const</font> <a class="code" href="classXalanDOMString.html">XalanDOMString</a>*
00106 <a class="code" href="classResultNamespacesStack.html#a8">getPrefixForNamespace</a>(<font class="keyword">const</font> <a class="code" href="classXalanDOMString.html">XalanDOMString</a>&amp; theNamespaceURI) <font class="keyword">const</font>;
00107
00112 <font class="keywordtype">bool</font>
00113 <a class="code" href="classResultNamespacesStack.html#a9">prefixIsPresentLocal</a>(<font class="keyword">const</font> <a class="code" href="classXalanDOMString.html">XalanDOMString</a>&amp; thePrefix);
00114
00115 <font class="keywordtype">void</font>
00116 <a class="code" href="classResultNamespacesStack.html#a10">clear</a>();
00117
00118 size_type
<a name="l00119"></a><a class="code" href="classResultNamespacesStack.html#a11">00119</a> <a class="code" href="classResultNamespacesStack.html#a11">size</a>()<font class="keyword"> const</font>
00120 <font class="keyword"> </font>{
00121 <font class="keywordflow">return</font> m_resultNamespaces.<a class="code" href="classXalanDeque.html#a10">size</a>() - 1;
00122 }
00123
00124 <font class="keywordtype">bool</font>
<a name="l00125"></a><a class="code" href="classResultNamespacesStack.html#a12">00125</a> <a class="code" href="classResultNamespacesStack.html#a12">empty</a>()<font class="keyword"> const</font>
00126 <font class="keyword"> </font>{
00127 <font class="keywordflow">return</font> <a class="code" href="classXalanDeque.html#s8">NamespacesStackType::const_iterator</a>(m_stackPosition) == m_resultNamespaces.<a class="code" href="classXalanDeque.html#a3">begin</a>() ? <font class="keyword">true</font> : <font class="keyword">false</font>;
00128 }
00129
00130 <font class="keyword">private</font>:
00131
00132 <font class="comment">// not implemented</font>
00133 <a class="code" href="classResultNamespacesStack.html#a0">ResultNamespacesStack</a>(<font class="keyword">const</font> <a class="code" href="classResultNamespacesStack.html">ResultNamespacesStack</a>&amp;);
00134
00135 <font class="keywordtype">bool</font>
00136 <a class="code" href="ElemAttributeSet_8hpp.html#a1">operator==</a>(<font class="keyword">const</font> <a class="code" href="classResultNamespacesStack.html">ResultNamespacesStack</a>&amp;) <font class="keyword">const</font>;
00137
00138 <a class="code" href="classResultNamespacesStack.html">ResultNamespacesStack</a>&amp;
00139 operator=(<font class="keyword">const</font> <a class="code" href="classResultNamespacesStack.html">ResultNamespacesStack</a>&amp;);
00140
00141 <font class="keyword">enum</font> { eDefaultCreateNewContextStackSize = 25 };
00142
00146 <a class="code" href="classXalanDeque.html">NamespacesStackType</a> m_resultNamespaces;
00147
00148 NamespacesStackType::iterator m_stackBegin;
00149
00150 NamespacesStackType::iterator m_stackPosition;
00151
00152 BoolVectorType m_createNewContextStack;
00153 };
00154
00155
00156
00157 XALAN_CPP_NAMESPACE_END
00158
00159
00160
00161 <font class="preprocessor">#endif // XALAN_RESULTNAMESPACESSTACK_HEADER_GUARD</font>
</font></pre></div><p align="center"><a href="diagramnotes.html">Interpreting class diagrams</a></p>
<p><FONT color="#000000" face="arial,helvetica,sanserif" size="-1">
<i><A href="http://www.stack.nl/~dimitri/doxygen/">Doxygen</A> and
<A href="http://www.research.att.com/sw/tools/graphviz/">GraphViz</A> are used to generate this API documentation from the Xalan-C header files.</I></FONT></p>
<TABLE border="0" cellpadding="0" cellspacing="0" width="820"><TR><TD bgcolor="#0086b2"><IMG height="1" src="../resources/dot.gif" width="1" alt="dot"></TD></TR></TABLE>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="0" WIDTH="80%">
<TR>
<TD WIDTH="80%" VALIGN="TOP">
<P ALIGN="CENTER"><B>Xalan-C++ XSLT Processor Version 1.10</B><BR>
Copyright &copy; 1999-2004 The Apache Software Foundation. All Rights Reserved.</i></p>
</TD>
</TR>
<TR>
<TD WIDTH="100%">
<P ALIGN="CENTER"><IMG SRC="ApacheLogo.jpg" WIDTH="387" HEIGHT="100" ALIGN="BOTTOM" BORDER="0" ALT="Apache Logo">
</TD>
</TR>
</TABLE>