summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/locale/examples/collate.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/boost/libs/locale/examples/collate.cpp')
-rw-r--r--src/boost/libs/locale/examples/collate.cpp40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/boost/libs/locale/examples/collate.cpp b/src/boost/libs/locale/examples/collate.cpp
new file mode 100644
index 00000000..9e14e43a
--- /dev/null
+++ b/src/boost/libs/locale/examples/collate.cpp
@@ -0,0 +1,40 @@
+//
+// Copyright (c) 2009-2011 Artyom Beilis (Tonkikh)
+//
+// Distributed under the Boost Software License, Version 1.0. (See
+// accompanying file LICENSE_1_0.txt or copy at
+// http://www.boost.org/LICENSE_1_0.txt)
+//
+#include <iostream>
+#include <string>
+#include <set>
+
+#include <boost/locale.hpp>
+
+using namespace std;
+using namespace boost::locale;
+
+int main()
+{
+ generator gen;
+ std::locale::global(gen(""));
+ /// Set global locale to requested
+
+ /// Create a set that includes all strings sorted according to ABC order
+ /// std::locale can be used as object for comparison
+ typedef std::set<std::string,std::locale> set_type;
+ set_type all_strings;
+
+ /// Read all strings into the set
+ while(!cin.eof()) {
+ std::string tmp;
+ getline(cin,tmp);
+ all_strings.insert(tmp);
+ }
+ /// Print them out
+ for(set_type::iterator p=all_strings.begin();p!=all_strings.end();++p) {
+ cout<<*p<<endl;
+ }
+
+}
+// vim: tabstop=4 expandtab shiftwidth=4 softtabstop=4