6ddba32f48
Former-commit-id: fa7407621e839f87613476596c6589aeceb9d796
17 lines
382 B
C++
17 lines
382 B
C++
#ifndef STRING_CASE_CONVERTER_MANAGER_HDR
|
|
#define STRING_CASE_CONVERTER_MANAGER_HDR
|
|
|
|
#include "case_converter_factory.hpp"
|
|
|
|
class StringCaseConverterManager : public CaseConverterFactory<
|
|
std::string::const_iterator, std::back_insert_iterator<std::string> > {
|
|
|
|
public:
|
|
static StringCaseConverterManager& getInstance();
|
|
|
|
private:
|
|
StringCaseConverterManager();
|
|
};
|
|
|
|
#endif
|