connection.cpp 408 B

12345678910111213141516
  1. #include "connection.h"
  2. #include "remote_client_connection.h"
  3. #include <util/generic/cast.h>
  4. using namespace NBus;
  5. using namespace NBus::NPrivate;
  6. void TBusClientConnectionPtrOps::Ref(TBusClientConnection* c) {
  7. return CheckedCast<TRemoteClientConnection*>(c)->Ref();
  8. }
  9. void TBusClientConnectionPtrOps::UnRef(TBusClientConnection* c) {
  10. return CheckedCast<TRemoteClientConnection*>(c)->UnRef();
  11. }