Design Pattern Examples
Overview of object-oriented design patterns
lusplus/helpers/stringlist.h
Go to the documentation of this file.
1
5
6#pragma once
7#ifndef __STRINGLIST_H__
8#define __STRINGLIST_H__
9
10#include <vector>
11#include <string>
12
16typedef std::vector<std::string> StringList;
17
21typedef std::vector<std::wstring> StringListW;
22
23#endif // __STRINGLIST_H__
std::vector< std::wstring > StringListW
Typedef for a vector of std::wstring.
std::vector< std::string > StringList
Typedef for a vector of std::string.