Skip to content

Commit

Permalink
Fixing unit tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
MiguelCompany committed Dec 6, 2019
1 parent adea172 commit 39b3c07
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,11 @@ class ReaderLocator : public RTPSMessageSenderInterface
return nullptr;
}

const GUID_t& remote_guid() const
{
return remote_guid_;
}

/**
* Try to start using this object for a new matched reader.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,11 @@ class ReaderProxyData

void guid(const GUID_t& guid) { m_guid = guid; }

bool disable_positive_acks() const
{
return false;
}

const RemoteLocatorList& remote_locators() const
{
return remote_locators_;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ class WriterProxyData

void clear() { }

const GUID_t& persistence_guid() const { return m_guid; }

void persistence_guid(const GUID_t& /*guid*/) { }

void set_announced_unicast_locators(const LocatorList_t& /*locators*/) { }
Expand Down

0 comments on commit 39b3c07

Please sign in to comment.