Files
src-1.2/external/3rd/library/soePlatform/ChatAPI/utils/GenericAPI/GenericMessage.cpp
T
DarthArgus d2c830306f i must test these before calling them good - as gcc isn't on the windows
machine i push, test, fix, and then push again - pvs studio <3
2016-07-24 20:37:39 -07:00

31 lines
477 B
C++
Executable File

#include "GenericMessage.h"
#ifdef EXTERNAL_DISTRO
namespace NAMESPACE
{
#endif
namespace GenericAPI
{
GenericMessage::GenericMessage(short type)
: m_type(type)
{
}
GenericRequest::GenericRequest(short type)
: GenericMessage(type)
{
}
GenericResponse::GenericResponse(short type, unsigned result, void *user)
: GenericMessage(type),
m_result(result),
m_user(user),
m_track(0),
m_timeout(100)
{
}
};
#ifdef EXTERNAL_DISTRO
};
#endif