mirror of
https://github.com/worldforge/cyphesis
synced 2026-08-13 12:26:04 -04:00
10 lines
406 B
C++
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
|