editor/include/types.h
2019-12-13 01:46:01 +05:00

16 lines
352 B
C++

/*******************************************
* Zira Editor
* A lightweight PHP Editor
* (C)2019 https://github.com/ziracms/editor
*******************************************/
#ifndef TYPES_H
#define TYPES_H
#include <list>
#include <unordered_map>
typedef std::list<std::unordered_map<std::string, std::string>> WordsMapList;
#endif // TYPES_H