/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/modules/NewPlus/NewShellExtensionContextMenu/template_folder.h
30 строк
615 B
Christian Gaarden Gaardmark
[New+]Windows 10 support (#35832)
27 ноя 2024, 17:22
Не верифицирован
27 ноя 2024, 17:22
084402a
Код
Авторство
О чём код?
#pragma once #include "pch.h" #include <filesystem> #include <iostream> #include <string> #include <list> #include "template_item.h" namespace newplus { class template_folder { public: template_folder(const std::filesystem::path newplus_template_folder); ~template_folder(); void rescan_template_folder(); std::filesystem::path template_folder_path; std::list<std::pair<std::wstring, template_item*>> list_of_templates; template_item* get_template_item(const int index) const; protected: template_folder(); void init(); }; }