Blame view

app/gui/oven_control/fileprocessor.h 476 Bytes
1f685a2a5   고영탁   설정 시스템 관리 기능 개발
1
2
3
4
5
6
7
8
9
10
11
12
  #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);
7a3fdac0e   고영탁   설정 프로그램 다운로드 기능 개발
13
14
  static void getAllDirList(QDir d, QStringList &list);
  static quint64 getDirSize(const QString &str);
0d34b6c35   고영탁   시스템 정보 표시 관련 변경
15
  static bool readFromInfoFile(QMap<QString , QString> &info_map, const QString &filename);
1f685a2a5   고영탁   설정 시스템 관리 기능 개발
16
17
18
  };
  
  #endif // FILEPROCESSOR_H