Limo
A simple mod manager
Loading...
Searching...
No Matches
externalchangesinfo.h
Go to the documentation of this file.
1
5
6
7#pragma once
8
9#include <vector>
10#include <string>
11#include <filesystem>
12
13
18{
23 std::vector<std::pair<std::filesystem::path, int>> file_changes;
25 std::string deployer_name;
28};
Contains data regarding externally modified files for one deployer.
Definition externalchangesinfo.h:18
std::string deployer_name
Name of the deployer.
Definition externalchangesinfo.h:25
int deployer_id
Id of the deployer.
Definition externalchangesinfo.h:27
std::vector< std::pair< std::filesystem::path, int > > file_changes
For every modified file: Its path, relative to the deployer's target directory and the id of the mod ...
Definition externalchangesinfo.h:23