Kaydet (Commit) 6b34ac24 authored tarafından Noel Grandin's avatar Noel Grandin

loplugin:mergeclasses

Change-Id: Ic02d59708670949c3342566753882eebd086438f
üst 06e4a989
...@@ -129,7 +129,6 @@ merge frm::ITextAttributeListener with frm::OAttributeDispatcher ...@@ -129,7 +129,6 @@ merge frm::ITextAttributeListener with frm::OAttributeDispatcher
merge frm::ITextSelectionListener with frm::ORichTextPeer merge frm::ITextSelectionListener with frm::ORichTextPeer
merge ftp::CurlInput with InsertData merge ftp::CurlInput with InsertData
merge ftp::ResultSetFactory with ResultSetFactoryI merge ftp::ResultSetFactory with ResultSetFactoryI
merge helpdatafileproxy::hdf_internal::Noncopyable with helpdatafileproxy::Hdf
merge i_xml_parser_event_handler with (anonymous namespace)::recently_used_file_filter merge i_xml_parser_event_handler with (anonymous namespace)::recently_used_file_filter
merge io_stm::IRingBuffer with io_stm::MemRingBuffer merge io_stm::IRingBuffer with io_stm::MemRingBuffer
merge io_stm::I_FIFO with io_stm::MemFIFO merge io_stm::I_FIFO with io_stm::MemFIFO
......
...@@ -27,18 +27,6 @@ ...@@ -27,18 +27,6 @@
namespace helpdatafileproxy { namespace helpdatafileproxy {
namespace hdf_internal
{
class Noncopyable
{
Noncopyable(const Noncopyable&) SAL_DELETED_FUNCTION;
void operator=(const Noncopyable&) SAL_DELETED_FUNCTION;
protected:
Noncopyable() {}
~Noncopyable() {}
};
}
class HDFData class HDFData
{ {
friend class Hdf; friend class Hdf;
...@@ -65,7 +53,7 @@ namespace helpdatafileproxy { ...@@ -65,7 +53,7 @@ namespace helpdatafileproxy {
typedef std::unordered_map< OString,std::pair<int,int>,OStringHash > StringToValPosMap; typedef std::unordered_map< OString,std::pair<int,int>,OStringHash > StringToValPosMap;
typedef std::unordered_map< OString,OString,OStringHash > StringToDataMap; typedef std::unordered_map< OString,OString,OStringHash > StringToDataMap;
class Hdf : hdf_internal::Noncopyable class Hdf
{ {
OUString m_aFileURL; OUString m_aFileURL;
StringToDataMap* m_pStringToDataMap; StringToDataMap* m_pStringToDataMap;
...@@ -108,7 +96,10 @@ namespace helpdatafileproxy { ...@@ -108,7 +96,10 @@ namespace helpdatafileproxy {
bool startIteration(); bool startIteration();
bool getNextKeyAndValue( HDFData& rKey, HDFData& rValue ); bool getNextKeyAndValue( HDFData& rKey, HDFData& rValue );
void stopIteration(); void stopIteration();
Hdf(const Hdf&) SAL_DELETED_FUNCTION;
void operator=(const Hdf&) SAL_DELETED_FUNCTION;
}; };
} }
#endif #endif
......
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