Use boost::scoped_ptr for Log filter
[metaproxy-moved-to-github.git] / src / filter_log.hpp
index d7ad4ed..28545eb 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: filter_log.hpp,v 1.9 2005-10-31 09:40:18 marc Exp $
+/* $Id: filter_log.hpp,v 1.10 2005-12-11 17:23:05 adam Exp $
    Copyright (c) 2005, Index Data.
 
 %LICENSE%
@@ -7,25 +7,20 @@
 #ifndef FILTER_LOG_HPP
 #define FILTER_LOG_HPP
 
-#include <stdexcept>
-#include <vector>
+#include <boost/scoped_ptr.hpp>
 
 #include "filter.hpp"
 
-#include <boost/thread/mutex.hpp>
-
-
 namespace yp2 {
     namespace filter {
         class Log : public Base {
+            class Rep;
+            boost::scoped_ptr<Rep> m_p;
         public:
-            Log(const std::string &msg);
             Log();
+            Log(const std::string &x);
+            ~Log();
             void process(yp2::Package & package) const;
-        private:
-            /// static mutex to lock Ostream during logging operation
-            static boost::mutex m_log_mutex;
-            std::string m_msg;
         };
     }
 }