// Copyright (c) 2008 Michael Miceli and Christopher Miceli // // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #ifndef AP_LOG_WRITER_HPP #define AP_LOG_WRITER_HPP #include #include #include #include #include "defines.hpp" #include namespace AllPairs { class LogWriter { private: std::string appName_; saga::url advURL_; public: LogWriter(std::string appName, saga::url advURL); LogWriter(saga::url advURL); ~LogWriter(); void write(std::string, unsigned int logLevel); }; } #endif // AP_LOG_WRITER_HPP