Blame view

app/gui/oven_control/config.h 341 Bytes
5a38a241e   김태훈   환경 설정 뼈대 추가
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
26
27
28
29
30
31
  #ifndef CONFIG_H
  #define CONFIG_H
  
  
  #include <QObject>
  
  namespace Define
  {
      enum ConfigType {
  
      };
  }
  
  class Config : public QObject
  {
      Q_OBJECT
  
      explicit Config(QObject *parent = 0);
  
      static Config *instance;
  
  public:
      static Config *getInstance();
      static void init();
  
  signals:
  
  public slots:
  };
  
  #endif // CONFIG_H