Some changes, including extension on Ccnx::Name
diff --git a/src/sync-log.h b/src/sync-log.h
index bef41a7..0316294 100644
--- a/src/sync-log.h
+++ b/src/sync-log.h
@@ -24,6 +24,7 @@
#include "db-helper.h"
#include <sync-state.pb.h>
+#include <ccnx-name.h>
typedef boost::shared_ptr<SyncStateMsg> SyncStateMsgPtr;
@@ -40,7 +41,7 @@
// done
void
- UpdateDeviceSeqno (const std::string &name, sqlite3_int64 seqNo);
+ UpdateDeviceSeqno (const Ccnx::Name &name, sqlite3_int64 seqNo);
// std::string
// LookupForwardingAlias (const std::string &deviceName);
@@ -71,9 +72,10 @@
FindStateDifferences (const Hash &oldHash, const Hash &newHash);
protected:
- std::string m_localName;
- sqlite3_int64 m_localDeviceId;
+ // std::string m_localName;
+ Ccnx::Name m_localName;
+ sqlite3_int64 m_localDeviceId;
};