add ifndefs to all headers

This commit is contained in:
Antonio SJ Musumeci
2016-12-22 22:46:20 -05:00
parent e93c946198
commit a60d815e92
91 changed files with 444 additions and 12 deletions

View File

@ -14,6 +14,9 @@
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#ifndef __BUILDMAP_HPP__
#define __BUILDMAP_HPP__
#include <algorithm>
template<typename K,typename V>
@ -41,3 +44,5 @@ public:
private:
std::map<K,V> _map;
};
#endif