Blame view

app/gui/oven_control/fileprocessor.h 286 Bytes
1f685a2a5   고영탁   설정 시스템 관리 기능 개발
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  #ifndef FILEPROCESSOR_H
  #define FILEPROCESSOR_H
  
  #include <QtCore>
  
  class FileProcessor
  {
  public:
      FileProcessor();
  static bool folderExist(const QString &path);
  static bool fileExist(const QString &path_file);
  static bool detectUSB(QString &usbpath);
  
  };
  
  #endif // FILEPROCESSOR_H