Extract common code out into kdm_for_screen()
[dcpomatic.git] / src / lib / log.h
index b102a2d653983c3368bf04d8669f5f440e05df19..873d5f7a1674238b7946a3a0bef1434da54d3841 100644 (file)
@@ -46,11 +46,17 @@ 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.
         */
-       virtual std::string head_and_tail (int amount = 1024) const = 0;
+       virtual std::string head_and_tail (int amount = 1024) const {
+               (void) amount;
+               return "";
+       }
 
 protected: