cyphesis/tests/stubs/server/stubExternalMindsConnection.h
2017-07-25 23:40:40 +02:00

44 lines
No EOL
1.4 KiB
C++

// AUTOGENERATED file, created by the tool generate_stub.py, don't edit!
// If you want to add your own functionality, instead edit the stubExternalMindsConnection_custom.h file.
#include "server/ExternalMindsConnection.h"
#include "stubExternalMindsConnection_custom.h"
#ifndef STUB_SERVER_EXTERNALMINDSCONNECTION_H
#define STUB_SERVER_EXTERNALMINDSCONNECTION_H
#ifndef STUB_ExternalMindsConnection_ExternalMindsConnection
//#define STUB_ExternalMindsConnection_ExternalMindsConnection
ExternalMindsConnection::ExternalMindsConnection(Link* link, const std::string& routerId)
: m_link(nullptr)
{
}
#endif //STUB_ExternalMindsConnection_ExternalMindsConnection
#ifndef STUB_ExternalMindsConnection_ExternalMindsConnection_DTOR
//#define STUB_ExternalMindsConnection_ExternalMindsConnection_DTOR
ExternalMindsConnection::~ExternalMindsConnection()
{
}
#endif //STUB_ExternalMindsConnection_ExternalMindsConnection_DTOR
#ifndef STUB_ExternalMindsConnection_getLink
//#define STUB_ExternalMindsConnection_getLink
Link* ExternalMindsConnection::getLink() const
{
return nullptr;
}
#endif //STUB_ExternalMindsConnection_getLink
#ifndef STUB_ExternalMindsConnection_getRouterId
//#define STUB_ExternalMindsConnection_getRouterId
const std::string& ExternalMindsConnection::getRouterId() const
{
static std::string instance; return instance;
}
#endif //STUB_ExternalMindsConnection_getRouterId
#endif