// Version: $Id: e007b4ca692758f59125f2a94c63f97d84bf3081 $ // // // Commentary: // // // Change Log: // // // Code: #pragma once #include class dtkLogEnginePrivate { public: dtkLogEnginePrivate(void) : level(dtkLog::Info), stream(&buffer), custom(false) {} public: void write(void); public: dtkLog::Level level; public: QDebug stream; public: QString buffer; public: bool custom; }; // // dtkLogEngine_p.h ends here