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

9 lines
398 B
C++

//Add custom implementations of stubbed functions here; this file won't be rewritten when re-generating stubs.
#ifndef STUB_Connection_Connection
#define STUB_Connection_Connection
Connection::Connection(CommSocket & commSocket, ServerRouting & svr, const std::string & addr, const std::string & id, long iid)
: Link(commSocket, id, iid), m_server(svr)
{
}
#endif //STUB_Connection_Connection