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

mark as noncopyable

Change-Id: Ic464974087f9f8fb161aaffde232668ba01c2f62
üst 67276f70
......@@ -26,6 +26,7 @@
#include "types.hxx"
#include <boost/noncopyable.hpp>
#include <boost/ptr_container/ptr_vector.hpp>
class SmNode;
......@@ -169,7 +170,7 @@ struct SmTokenTableEntry
sal_uInt16 nLevel;
};
class SmParser
class SmParser : boost::noncopyable
{
OUString m_aBufferString;
SmToken m_aCurToken;
......@@ -190,10 +191,6 @@ class SmParser
//! locale where '.' is decimal separator!
::com::sun::star::lang::Locale m_aDotLoc;
// declare copy-constructor and assignment-operator private
SmParser(const SmParser &);
SmParser & operator = (const SmParser &);
protected:
#if OSL_DEBUG_LEVEL > 1
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