Stupid winsock needs special way to close sockets.
[dftpd.git] / ServerPtr.hpp
blobe875e1c3e3c2bb66355d6b22428a90562720a4cc
1 #ifndef __DFTPD__SERVERPTR_HPP__
2 #define __DFTPD__SERVERPTR_HPP__
4 #include <boost/shared_ptr.hpp>
5 #include <boost/weak_ptr.hpp>
7 class Server;
8 typedef boost::shared_ptr<Server> ServerPtr;
9 typedef boost::weak_ptr<Server> ServerWPtr;
11 #endif