summaryrefslogtreecommitdiff
path: root/starmath/inc/symbol.hxx
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2005-10-05 13:58:29 +0000
committerKurt Zenker <kz@openoffice.org>2005-10-05 13:58:29 +0000
commit31a626897a18371d0610e2b0032db2c0407ea22e (patch)
treef5b03b0bf8f155c549c5e3a9f01b9970f8556937 /starmath/inc/symbol.hxx
parent7b924dda259c09b873c9233b12cebdd6c8e72c52 (diff)
INTEGRATION: CWS tl12 (1.11.12); FILE MERGED
2005/09/27 01:39:05 tl 1.11.12.3: RESYNC: (1.12-1.13); FILE MERGED 2005/06/30 13:36:15 tl 1.11.12.2: RESYNC: (1.11-1.12); FILE MERGED 2005/05/02 08:34:56 tl 1.11.12.1: #i44468# have all documents use the same SmSymSetManager
Diffstat (limited to 'starmath/inc/symbol.hxx')
-rw-r--r--starmath/inc/symbol.hxx18
1 files changed, 10 insertions, 8 deletions
diff --git a/starmath/inc/symbol.hxx b/starmath/inc/symbol.hxx
index 1009ed7939b9..f52bb2cb7c6f 100644
--- a/starmath/inc/symbol.hxx
+++ b/starmath/inc/symbol.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: symbol.hxx,v $
*
- * $Revision: 1.13 $
+ * $Revision: 1.14 $
*
- * last change: $Author: rt $ $Date: 2005-09-07 15:00:32 $
+ * last change: $Author: kz $ $Date: 2005-10-05 14:58:29 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -221,12 +221,14 @@ public:
SmSymSetManager& operator = (const SmSymSetManager& rSymbolSetManager);
+ void GetSymbols( std::vector< SmSym > &rSymbols ) const;
+
USHORT AddSymbolSet(SmSymSet* pSymbolSet);
void ChangeSymbolSet(SmSymSet* pSymbolSet);
void DeleteSymbolSet(USHORT SymbolSetNo);
USHORT GetSymbolSetPos(const String& rSymbolSetName) const;
- USHORT GetSymbolSetCount() const { return pImpl->NoSymbolSets; }
+ USHORT GetSymbolSetCount() const { return pImpl->NoSymbolSets; }
SmSymSet *GetSymbolSet(USHORT SymbolSetNo) const
{
return pImpl->SymbolSets.Get(SymbolSetNo);
@@ -238,15 +240,15 @@ public:
return ((SmSymSetManager *) this)->GetSymbolByName(rSymbolName);
}
- void AddReplaceSymbol( const SmSym & rSymbol );
- USHORT GetSymbolCount() const;
- const SmSym * GetSymbolByPos( USHORT nPos ) const;
+ void AddReplaceSymbol( const SmSym & rSymbol );
+ USHORT GetSymbolCount() const;
+ const SmSym * GetSymbolByPos( USHORT nPos ) const;
BOOL IsModified() const { return pImpl->Modified; }
void SetModified(BOOL Modify) { pImpl->Modified = Modify; }
- void Load();
- void Save();
+ void Load();
+ void Save();
};
#endif