Changing API from ndn.cxx to ndn-cpp
Change-Id: Ie0fe7d75e4ed056dec6e9da906f9c8808ad9a0ca
diff --git a/src/profile-data.h b/src/profile-data.h
index 9c8e184..dcde0d8 100644
--- a/src/profile-data.h
+++ b/src/profile-data.h
@@ -11,12 +11,14 @@
#ifndef LINKNDN_PROFILE_DATA_H
#define LINKNDN_PROFILE_DATA_H
-#include <ndn.cxx/data.h>
+#include <ndn-cpp/data.hpp>
#include "profile.h"
class ProfileData : public ndn::Data
{
public:
+ ProfileData();
+
ProfileData(const Profile& profile);
ProfileData(const ProfileData& profileData);
@@ -25,11 +27,11 @@
~ProfileData() {}
- inline const ndn::Name&
+ const ndn::Name&
getIdentityName() const
{ return m_identity; }
- inline const Profile&
+ const Profile&
getProfile() const
{ return m_profile; }