Atmosphere/mesosphere/source/processes/KBaseSession.cpp

18 lines
208 B
C++
Raw Normal View History

2018-11-11 01:36:15 +01:00
#include <mesosphere/processes/KBaseSession.hpp>
namespace mesosphere
{
KBaseSession::~KBaseSession()
{
}
Result KBaseSession::Initialize()
{
SetClientServerParent();
return ResultSuccess();
}
}