Boost.Locale
collate.cpp

Example of using collation functions

//
// Copyright (c) 2009-2011 Artyom Beilis (Tonkikh)
//
// Distributed under the Boost Software License, Version 1.0.
// https://www.boost.org/LICENSE_1_0.txt
#include <iostream>
#include <set>
#include <string>
#include <boost/locale.hpp>
using namespace boost::locale;
int main()
{
generator gen;
std::locale::global(gen(""));
typedef std::set<std::string, std::locale> set_type;
set_type all_strings;
while(!std::cin.eof()) {
std::string tmp;
std::getline(std::cin, tmp);
all_strings.insert(tmp);
}
for(set_type::iterator p = all_strings.begin(); p != all_strings.end(); ++p) {
std::cout << *p << std::endl;
}
}