Stupid winsock needs special way to close sockets.
[dftpd.git] / TelnetPtr.hpp
blob325cef7fbaf326374f001bb6f9334627d57feb17
1 #ifndef __DFTPD__TELNETPTR_HPP__
2 #define __DFTPD__TELNETPTR_HPP__
4 #include <boost/shared_ptr.hpp>
5 #include <boost/weak_ptr.hpp>
7 class Telnet;
8 typedef boost::shared_ptr<Telnet> TelnetPtr;
9 typedef boost::weak_ptr<Telnet> TelnetWPtr;
11 #endif