summaryrefslogtreecommitdiff
path: root/sw/inc/tox.hxx
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2014-04-29 14:02:47 +0200
committerMichael Stahl <mstahl@redhat.com>2014-04-29 14:18:43 +0200
commit4d1c4c609bea91141d7960f9a3dd8d779573163f (patch)
tree1ebfd6365812bc0679c406506384bec92a9e0cf0 /sw/inc/tox.hxx
parenta03c88eded807da34d0490ab4e1830e7573338e9 (diff)
sw: remove SwFormTokensHelper implementation details from header
Change-Id: I9102caec1fec680e55e0ca66a0e1b02f41df5828
Diffstat (limited to 'sw/inc/tox.hxx')
-rw-r--r--sw/inc/tox.hxx43
1 files changed, 3 insertions, 40 deletions
diff --git a/sw/inc/tox.hxx b/sw/inc/tox.hxx
index c626bda2d1b2..cb92306a2150 100644
--- a/sw/inc/tox.hxx
+++ b/sw/inc/tox.hxx
@@ -30,7 +30,6 @@
#include <calbck.hxx>
#include <vector>
-#include <boost/optional.hpp>
namespace com { namespace sun { namespace star {
namespace text { class XDocumentIndexMark; }
@@ -265,43 +264,7 @@ typedef std::vector<SwFormToken> SwFormTokens;
class SW_DLLPUBLIC SwFormTokensHelper
{
/// the tokens
- SwFormTokens aTokens;
-
- /**
- Builds a token from its string representation.
-
- @sPattern the whole pattern
- @nCurPatternPos starting position of the token
-
- @return the token
- */
- SAL_DLLPRIVATE boost::optional<SwFormToken> BuildToken( const OUString & sPattern,
- sal_Int32 & nCurPatternPos ) const;
-
- /**
- Returns the string of a token.
-
- @param sPattern the whole pattern
- @param nStt starting position of the token
-
- @return the string representation of the token
- */
- SAL_DLLPRIVATE OUString SearchNextToken( const OUString & sPattern,
- sal_Int32 nStt ) const;
-
- /**
- Returns the type of a token.
-
- @param sToken the string representation of the token
- @param pTokenLen return parameter the length of the head of the token
-
- If pTokenLen is non-NULL the length of the token's head is
- written to *pTokenLen
-
- @return the type of the token
- */
- SAL_DLLPRIVATE FormTokenType GetTokenType(const OUString & sToken,
- sal_Int32 * pTokenLen) const;
+ SwFormTokens m_Tokens;
public:
/**
@@ -309,7 +272,7 @@ public:
@param rTokens vector of tokens
*/
- SwFormTokensHelper(const SwFormTokens & rTokens) : aTokens(rTokens) {}
+ SwFormTokensHelper(const SwFormTokens & rTokens) : m_Tokens(rTokens) {}
/**
constructor
@@ -323,7 +286,7 @@ public:
@return vector of tokens
*/
- const SwFormTokens & GetTokens() const { return aTokens; }
+ const SwFormTokens & GetTokens() const { return m_Tokens; }
};
class SW_DLLPUBLIC SwForm