Kaydet (Commit) 5c5e8096 authored tarafından Takeshi Abe's avatar Takeshi Abe

mark as noncopyable

Change-Id: Ic464974087f9f8fb161aaffde232668ba01c2f62
üst 67276f70
...@@ -26,6 +26,7 @@ ...@@ -26,6 +26,7 @@
#include "types.hxx" #include "types.hxx"
#include <boost/noncopyable.hpp>
#include <boost/ptr_container/ptr_vector.hpp> #include <boost/ptr_container/ptr_vector.hpp>
class SmNode; class SmNode;
...@@ -169,7 +170,7 @@ struct SmTokenTableEntry ...@@ -169,7 +170,7 @@ struct SmTokenTableEntry
sal_uInt16 nLevel; sal_uInt16 nLevel;
}; };
class SmParser class SmParser : boost::noncopyable
{ {
OUString m_aBufferString; OUString m_aBufferString;
SmToken m_aCurToken; SmToken m_aCurToken;
...@@ -190,10 +191,6 @@ class SmParser ...@@ -190,10 +191,6 @@ class SmParser
//! locale where '.' is decimal separator! //! locale where '.' is decimal separator!
::com::sun::star::lang::Locale m_aDotLoc; ::com::sun::star::lang::Locale m_aDotLoc;
// declare copy-constructor and assignment-operator private
SmParser(const SmParser &);
SmParser & operator = (const SmParser &);
protected: protected:
#if OSL_DEBUG_LEVEL > 1 #if OSL_DEBUG_LEVEL > 1
bool IsDelimiter( const OUString &rTxt, sal_Int32 nPos ); bool IsDelimiter( const OUString &rTxt, sal_Int32 nPos );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment