face: move Channel and subclasses into nfd::face namespace
Change-Id: I163ef20e11b65d19d68585ec075fd3cd224a573b
diff --git a/tests/daemon/mgmt/face-manager.t.cpp b/tests/daemon/mgmt/face-manager.t.cpp
index c584538..c953d3b 100644
--- a/tests/daemon/mgmt/face-manager.t.cpp
+++ b/tests/daemon/mgmt/face-manager.t.cpp
@@ -239,7 +239,7 @@
CheckResponseResult::OK);
}
-class TestChannel : public Channel
+class TestChannel : public face::Channel
{
public:
explicit
@@ -263,12 +263,12 @@
const ndn::optional<FaceUri>& localUri,
ndn::nfd::FacePersistency persistency,
bool wantLocalFieldsEnabled,
- const FaceCreatedCallback& onCreated,
- const FaceCreationFailedCallback& onConnectFailed) final
+ const face::FaceCreatedCallback& onCreated,
+ const face::FaceCreationFailedCallback& onConnectFailed) final
{
}
- std::vector<shared_ptr<const Channel>>
+ std::vector<shared_ptr<const face::Channel>>
getChannels() const final
{
return m_channels;
@@ -284,7 +284,7 @@
}
private:
- std::vector<shared_ptr<const Channel>> m_channels;
+ std::vector<shared_ptr<const face::Channel>> m_channels;
};
BOOST_AUTO_TEST_CASE(ChannelDataset)