looqs/shared/filesaveroptions.h

15 lines
312 B
C
Raw Normal View History

#ifndef FILESAVEROPTIONS_H
#define FILESAVEROPTIONS_H
class FileSaverOptions
{
public:
bool verbose = false;
bool keepGoing = false;
bool pathsOnly = false;
/* Whether those previously explicitly without content should be filled */
bool fillPathsOnlyWithContent = false;
};
#endif // FILESAVEROPTIONS_H