Design Pattern Examples
Overview of object-oriented design patterns
lusplus/helpers/titlecase.h
Go to the documentation of this file.
1
5
6#pragma once
7#ifndef __TITLECASE_H__
8#define __TITLECASE_H__
9
10#include <string>
11
12namespace Helpers
13{
23 std::string titlecase(const std::string& s);
24
25}
26#endif // __TITLECASE_H__
27
The namespace containing all the "helper" functions in the C++ code.
std::string titlecase(const std::string &s)
Convert the first word (or only word) in the given string to lowercase then make the first letter upp...
Definition: titlecase.cpp:11