DRDE/ACTK1_0/session/SessionFactory.cpp
Ren RenJuan 681188a22d push
2014-01-08 05:00:04 +00:00

11 lines
299 B
C++

#include "session/SessionFactory.hpp"
#include "session/Session.hpp"
#include "session/TLSSession.hpp"
#include "session/SessionProperties.hpp"
Session* SessionFactory::newInstance (SessionProperties* props)
throw (SessionConfigurationException)
{
return new TLSSession(props);
}