Support of isLocal interface for all face types
diff --git a/model/ccnx-face.cc b/model/ccnx-face.cc
index 38d76e6..7821055 100644
--- a/model/ccnx-face.cc
+++ b/model/ccnx-face.cc
@@ -132,6 +132,12 @@
 }
 
 bool
+CcnxFace::IsLocal() const
+{
+    return m_isLocal;
+}
+
+bool
 CcnxFace::operator== (const CcnxFace &face) const
 {
   NS_ASSERT_MSG (m_node->GetId () == face.m_node->GetId (), "Faces of different nodes should not be compared to each other");