Design Pattern Examples
Overview of object-oriented design patterns
lusplus/helpers/mapofstrings.h
Go to the documentation of this file.
1
5
6#pragma once
7
8#include <map>
9#include <string>
10
11#include "stringlist.h"
12
16using MapOfStrings = std::map<std::string, StringList>;
Declaration of the StringList and StringListW typedefs for declaring a vector of strings.
Represents a list of structures that map strings to ConstStringList objects.