aboutsummaryrefslogtreecommitdiff
path: root/odb/details/c-string.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/details/c-string.hxx')
-rw-r--r--odb/details/c-string.hxx31
1 files changed, 31 insertions, 0 deletions
diff --git a/odb/details/c-string.hxx b/odb/details/c-string.hxx
new file mode 100644
index 0000000..ce029f8
--- /dev/null
+++ b/odb/details/c-string.hxx
@@ -0,0 +1,31 @@
+// file : odb/details/c-string.hxx
+// copyright : Copyright (c) 2009-2012 Code Synthesis Tools CC
+// license : GNU GPL v2; see accompanying LICENSE file
+
+#ifndef ODB_DETAILS_C_STRING_HXX
+#define ODB_DETAILS_C_STRING_HXX
+
+#include <odb/pre.hxx>
+
+#include <cstring>
+
+#include <odb/details/export.hxx>
+
+namespace odb
+{
+ namespace details
+ {
+ struct LIBODB_EXPORT c_string_comparator
+ {
+ bool
+ operator() (const char* x, const char* y) const
+ {
+ return std::strcmp (x, y) < 0;
+ }
+ };
+ }
+}
+
+#include <odb/post.hxx>
+
+#endif // ODB_DETAILS_C_STRING_HXX