std::shared_ptr
[dcpomatic.git] / src / lib / dcpomatic_log.h
index d5d230414751ad14d2d4057440d9b87ffd94ee8c..c557bb17d57bc2a2232ea0fb38eecde669430e43 100644 (file)
 
 #include "log.h"
 #include "compose.hpp"
-#include <boost/shared_ptr.hpp>
 
 /** The current log; set up by the front-ends when they have a Film to log into */
-extern boost::shared_ptr<Log> dcpomatic_log;
+extern std::shared_ptr<Log> dcpomatic_log;
 
 #define LOG_GENERAL(...)      dcpomatic_log->log(String::compose(__VA_ARGS__), LogEntry::TYPE_GENERAL);
 #define LOG_GENERAL_NC(...)   dcpomatic_log->log(__VA_ARGS__, LogEntry::TYPE_GENERAL);