DRDE/ACTK1_0/session/SessionFactory.cpp

12 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);
}