SIRF  3.6.0
iequals.h
Go to the documentation of this file.
1 #pragma once
2 
3 #ifndef CASE_INSENSITIVE_STRING_COMPARISON
4 #define CASE_INSENSITIVE_STRING_COMPARISON
5 
6 #include <string>
7 
17 namespace sirf {
22  bool iequals(const std::string& a, const std::string& b);
23 }
24 
25 #endif
Abstract data container.
Definition: GeometricalInfo.cpp:141
bool iequals(const std::string &a, const std::string &b)
Case insensitive string comparison, replaces boost::iequals.
Definition: iequals.cpp:7