summaryrefslogtreecommitdiffstats
path: root/autodoc/source/parser/cpp
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2007-11-02 15:57:02 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2007-11-02 15:57:02 +0000
commitddb2fa2926dd77a5eb49ae345d8765e38daeffab (patch)
tree468c00ba0fef6f6c2f0298cbe9a6d529a982d9f3 /autodoc/source/parser/cpp
parentINTEGRATION: CWS adc18 (1.9.2); FILE MERGED (diff)
downloadcore-ddb2fa2926dd77a5eb49ae345d8765e38daeffab.tar.gz
core-ddb2fa2926dd77a5eb49ae345d8765e38daeffab.zip
INTEGRATION: CWS adc18 (1.8.2); FILE MERGED
2007/10/18 15:23:18 np 1.8.2.1: #i81775#
Diffstat (limited to 'autodoc/source/parser/cpp')
-rw-r--r--autodoc/source/parser/cpp/pe_tpltp.cxx16
1 files changed, 13 insertions, 3 deletions
diff --git a/autodoc/source/parser/cpp/pe_tpltp.cxx b/autodoc/source/parser/cpp/pe_tpltp.cxx
index 78a2f70adba7..bbf2e2836f56 100644
--- a/autodoc/source/parser/cpp/pe_tpltp.cxx
+++ b/autodoc/source/parser/cpp/pe_tpltp.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: pe_tpltp.cxx,v $
*
- * $Revision: 1.8 $
+ * $Revision: 1.9 $
*
- * last change: $Author: vg $ $Date: 2007-09-18 14:14:02 $
+ * last change: $Author: hr $ $Date: 2007-11-02 16:57:02 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -38,7 +38,7 @@
// NOT FULLY DECLARED SERVICES
-#include <cosv/template/tpltools.hxx>
+#include <cosv/tpl/tpltools.hxx>
@@ -75,8 +75,10 @@ PE_TemplateTop::Setup_StatusFunctions()
static INT16 stateT_start[] = { Tid_Less };
static F_Tok stateF_expect_qualifier[]= { &PE_TemplateTop::On_expect_qualifier_ClassOrTypename,
+ &PE_TemplateTop::On_expect_qualifier_Greater,
&PE_TemplateTop::On_expect_qualifier_ClassOrTypename };
static INT16 stateT_expect_qualifier[]= { Tid_class,
+ Tid_Greater,
Tid_typename };
static F_Tok stateF_expect_name[] = { &PE_TemplateTop::On_expect_name_Identifier };
@@ -128,6 +130,12 @@ PE_TemplateTop::On_expect_qualifier_ClassOrTypename( const char *)
}
void
+PE_TemplateTop::On_expect_qualifier_Greater(const char *)
+{
+ SetTokenResult(done, pop_success);
+}
+
+void
PE_TemplateTop::On_expect_qualifier_Other( const char *)
{
SetTokenResult(done, stay);
@@ -170,4 +178,6 @@ PE_TemplateTop::On_expect_separator_Greater( const char *)
}
+
+
} // namespace cpp