12 lines
299 B
C++
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);
|
||
|
}
|