summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2004-07-12 14:11:20 +0000
committerRüdiger Timm <rt@openoffice.org>2004-07-12 14:11:20 +0000
commit193be9a0fb763e99abc2c88b0b59efb2f2a515e8 (patch)
treee8109b622c92530f2858f89d52baa145991dc36e
parente5a289fcad2fea4896c8505f592ca57e7eede7f4 (diff)
INTEGRATION: CWS adc8 (1.2.82); FILE MERGED
2004/07/06 14:04:24 np 1.2.82.2: #i25608# 2004/07/05 13:46:59 np 1.2.82.1: #i25608#
-rw-r--r--autodoc/inc/ary/info/all_tags.hxx30
1 files changed, 27 insertions, 3 deletions
diff --git a/autodoc/inc/ary/info/all_tags.hxx b/autodoc/inc/ary/info/all_tags.hxx
index 11c73a3396e8..e02978e20ddd 100644
--- a/autodoc/inc/ary/info/all_tags.hxx
+++ b/autodoc/inc/ary/info/all_tags.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: all_tags.hxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: np $ $Date: 2002-11-01 17:12:24 $
+ * last change: $Author: rt $ $Date: 2004-07-12 15:11:19 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -285,7 +285,31 @@ class LabelTag : public AtTag
private:
virtual DocuText * Text();
- udmstri sLabel;
+ String sLabel;
+};
+
+class SinceTag : public AtTag
+{
+ public:
+ SinceTag();
+
+ virtual bool Add_SpecialMeaningToken(
+ const char * i_sText,
+ intt i_nNr );
+ virtual const char *
+ Title() const;
+ virtual UINT8 NrOfSpecialMeaningTokens() const;
+ virtual AtTag * GetFollower();
+
+ const String & Version() const { return sVersion; }
+
+ private:
+ virtual void do_StoreAt(
+ DocuDisplay & o_rDisplay ) const;
+ virtual DocuText * Text();
+
+ // Data
+ String sVersion;
};