build: Experimental support to build using precompiled headers
This type of build needs to be explicitly enabled using --with-pch
configure option.
Change-Id: I02dc304187d54c3cf40f1d51b1b11b21f868e225
diff --git a/src/security/sec-public-info-memory.hpp b/src/security/sec-public-info-memory.hpp
index eb747e9..e598ebf 100644
--- a/src/security/sec-public-info-memory.hpp
+++ b/src/security/sec-public-info-memory.hpp
@@ -8,8 +8,7 @@
#ifndef NDN_SEC_PUBLIC_INFO_MEMORY_HPP
#define NDN_SEC_PUBLIC_INFO_MEMORY_HPP
-#include <vector>
-#include <map>
+#include "../common.hpp"
#include "sec-public-info.hpp"
namespace ndn {
@@ -26,7 +25,7 @@
/**
* The virtual Destructor.
*/
- virtual
+ virtual
~SecPublicInfoMemory();
/**
@@ -34,7 +33,7 @@
* @param identityName The identity name.
* @return true if the identity exists, otherwise false.
*/
- virtual bool
+ virtual bool
doesIdentityExist(const Name& identityName);
/**
@@ -48,7 +47,7 @@
* Revoke the identity.
* @return true if the identity was revoked, false if not.
*/
- virtual bool
+ virtual bool
revokeIdentity();
/**