Limo
A simple mod manager
Loading...
Searching...
No Matches
installstep.h
Go to the documentation of this file.
1
5
6#pragma once
7
8#include "dependency.h"
9#include "plugingroup.h"
10#include <vector>
11
12
17namespace fomod
18{
21{
23 std::string name;
27 std::vector<PluginGroup> groups;
28};
29}
Represents a fomod dependency tree node.
Definition dependency.h:27
The fomod namespace contains classes used for parsing a FOMOD xml file and for creating an installer.
Definition dependency.h:22
Header for the PluginGroup struct.
A step during installation.
Definition installstep.h:21
std::vector< PluginGroup > groups
Sets of choices displayed during this step.
Definition installstep.h:27
Dependency dependencies
Step description.
Definition installstep.h:25
std::string name
Step name.
Definition installstep.h:23