mirror of
https://github.com/ModOrganizer2/modorganizer-uibase.git
synced 2026-07-27 14:03:49 -07:00
* Add proper CMake packaging for UIBase. * Add alias mo2::uibase target for uibase. * Add a few string methods to remove boost dependencies.
18 lines
254 B
C++
18 lines
254 B
C++
#ifndef FILEMAPPING_H
|
|
#define FILEMAPPING_H
|
|
|
|
#include <QString>
|
|
#include <vector>
|
|
|
|
struct Mapping
|
|
{
|
|
QString source;
|
|
QString destination;
|
|
bool isDirectory;
|
|
bool createTarget;
|
|
};
|
|
|
|
typedef std::vector<Mapping> MappingType;
|
|
|
|
#endif // FILEMAPPING_H
|