Rename BinaryXmlWireFormat::instance() to BinaryXmlWireFormat::getInstance()
diff --git a/ndn-cpp/Interest.hpp b/ndn-cpp/Interest.hpp
index 97baf2b..64746bf 100644
--- a/ndn-cpp/Interest.hpp
+++ b/ndn-cpp/Interest.hpp
@@ -135,7 +135,7 @@
   }
   ptr_lib::shared_ptr<std::vector<unsigned char> > encode() const 
   {
-    return encode(BinaryXmlWireFormat::instance());
+    return encode(BinaryXmlWireFormat::getInstance());
   }
   void decode(const unsigned char *input, unsigned int inputLength, WireFormat &wireFormat) 
   {
@@ -143,7 +143,7 @@
   }
   void decode(const unsigned char *input, unsigned int inputLength) 
   {
-    decode(input, inputLength, BinaryXmlWireFormat::instance());
+    decode(input, inputLength, BinaryXmlWireFormat::getInstance());
   }
   void decode(const std::vector<unsigned char> &input, WireFormat &wireFormat) 
   {