Updated Ghoul

Adapted to cleanup in Ghoul
This commit is contained in:
Alexander Bock
2015-11-30 17:50:26 -05:00
parent 999f198aa3
commit 0006e83f4b
5 changed files with 17 additions and 13 deletions

View File

@@ -26,6 +26,7 @@
#define __LOGFACTORY_H__
#include <ghoul/misc/dictionary.h>
#include <memory>
namespace ghoul {
namespace logging {
@@ -37,7 +38,7 @@ namespace openspace {
class LogFactory {
public:
static ghoul::logging::Log* createLog(const ghoul::Dictionary& dictionary);
static std::unique_ptr<ghoul::logging::Log> createLog(const ghoul::Dictionary& dictionary);
};
} // namespace openspace