roviz  0.7
Code Documentation of roviz
file_path.h
1 #ifndef FILE_PATH_H
2 #define FILE_PATH_H
3 
4 #include "core/export_handling.h"
5 
17 class ROVIZ_EXPORT FilePath
18 {
19 public:
20  enum Mode
21  {
22  AnyFile,
23  ExistingFile,
24  MultipleFiles,
25  Directory
26  };
27 };
28 
29 #endif // FILE_PATH_H
Class used as a tag for file paths.
Definition: file_path.h:17