Add FTP protocol debugging facilities.
[dftpd.git] / SessionControllerPtr.hpp
blob8a46567d35197c50c9adf5fec4b47c5c8c0ed61b
1 #ifndef __DFTPD__SESSIONCONTROLLERPTR_HPP__
2 #define __DFTPD__SESSIONCONTROLLERPTR_HPP__
4 #include <boost/shared_ptr.hpp>
5 #include <boost/weak_ptr.hpp>
7 class SessionController;
8 typedef boost::shared_ptr<SessionController> SessionControllerPtr;
9 typedef boost::weak_ptr<SessionController> SessionControllerWPtr;
11 #endif