Design Pattern Examples
Overview of object-oriented design patterns
lusplus/helpers/formatstring.h
Go to the documentation of this file.
1
6
7#pragma once
8#ifndef __FORMATSTRING_H__
9#define __FORMATSTRING_H__
10
11#include <string>
12
13namespace Helpers
14{
15
26 std::string formatstring(const char* fmt, ...);
27
28} // end namespace
29
30
31#endif // __FORMATSTRING_H__
32
The namespace containing all the "helper" functions in the C++ code.
std::string formatstring(const char *fmt,...)
Use the given string and arguments to return a buffer containing the formatted string....