/* File : example.hxx */ #include #include // integer sets std::set create_integer_set(const int size, const int value); int sum_integer_set(const std::set& set); std::set concat_integer_set(const std::set set, const std::set other_set); // string sets std::set create_string_set(const char* value); std::set concat_string_set(const std::set set, const std::set other_set);