cyphesis/tests/stubs/server/stubConnectableRouter_custom.h
Erik Ogenvik 7fb146eb36 Standardize installation of standard types.
This way the base types are exposed to clients.
2018-02-06 13:45:10 +01:00

10 lines
406 B
C++

//Add custom implementations of stubbed functions here; this file won't be rewritten when re-generating stubs.
#ifndef STUB_ConnectableRouter_ConnectableRouter
#define STUB_ConnectableRouter_ConnectableRouter
ConnectableRouter::ConnectableRouter(const std::string & id, long intId, Connection * c )
: Router(id, intId)
, m_connection(nullptr)
{
}
#endif //STUB_ConnectableRouter_ConnectableRouter