Stupid winsock needs special way to close sockets.
[dftpd.git] / Log.hpp
blobddd0dcd8829a078fed196183fdebac303e74e601
1 #ifndef __DFTPD__LOG_HPP__
2 #define __DFTPD__LOG_HPP__
4 #include <string>
6 class Log
8 public:
9 virtual void Print( const std::string& txt ) = 0;
12 extern Log* g_log;
14 #endif