Design Pattern Examples
Overview of object-oriented design patterns
lusplus/helpers/stringlist.h File Reference

Declaration of the StringList and StringListW typedefs for declaring a vector of strings. More...

#include <vector>
#include <string>
Include dependency graph for lusplus/helpers/stringlist.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define __STRINGLIST_H__
 

Typedefs

typedef std::vector< std::string > StringList
 Typedef for a vector of std::string.
 
typedef std::vector< std::wstring > StringListW
 Typedef for a vector of std::wstring.
 

Detailed Description

Declaration of the StringList and StringListW typedefs for declaring a vector of strings.

Definition in file lusplus/helpers/stringlist.h.

Macro Definition Documentation

◆ __STRINGLIST_H__

#define __STRINGLIST_H__

Definition at line 8 of file lusplus/helpers/stringlist.h.

Typedef Documentation

◆ StringList

typedef std::vector<std::string> StringList

Typedef for a vector of std::string.

Definition at line 16 of file lusplus/helpers/stringlist.h.

◆ StringListW

typedef std::vector<std::wstring> StringListW

Typedef for a vector of std::wstring.

Definition at line 21 of file lusplus/helpers/stringlist.h.