summaryrefslogtreecommitdiff
path: root/src/gui_file.hh
blob: 74d2feecc90187d8fcacb92c3646fefc52f61a5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// -*- mode: c++; c-basic-offset: 2; -*-

#ifndef GUI_FILE_HH
#define GUI_FILE_HH

#include <string>
#include <vector>

class GuiFile {
public:
  struct Filter {
    std::string name;
    std::vector<std::string> masks;
  };
  static const uint8_t FILE_OPEN;
  static const uint8_t FILE_SAVE;

private:
  GuiFile() {}
  ~GuiFile() {}
  GuiFile(GuiFile const&) = delete;
  GuiFile& operator=(GuiFile const&) = delete;
};

#endif  // GUI_FILE_HH