Add disk writer tool.
[dcpomatic.git] / src / lib / log.h
index 65d0229e981876a2e1741f580ce51460d4aa214d..416f4259d248399ed88cbff3f7d682ba2e3c0bf9 100644 (file)
@@ -46,6 +46,9 @@ public:
        void dcp_log (dcp::NoteType type, std::string message);
 
        void set_types (int types);
+       int types () const {
+               return _types;
+       }
 
        /** @param amount Approximate number of bytes to return; the returned value
         *  may be shorter or longer than this.
@@ -59,11 +62,9 @@ protected:
 
 private:
        virtual void do_log (boost::shared_ptr<const LogEntry> entry) = 0;
-       void config_changed ();
 
        /** bit-field of log types which should be put into the log (others are ignored) */
        int _types;
-       boost::signals2::scoped_connection _config_connection;
 };
 
 #endif