GITLAB

에프에이리눅스 / 1611_0007_prime_oven

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
38bd9e271739aea7b0ab6881ae53f7c20fe6e267
  • 1611_0007_prime_oven
  • app
  • gui
  • oven_control
  • statusarea.cpp
  • 16ef5d842   V2.0.01 Browse Code »
    김태훈
    4 years ago  
statusarea.cpp 215 Bytes
edit raw blame history
1 2 3 4 5 6 7 8 9 10 11 12 13 14
#include "statusarea.h"
#include "ui_statusarea.h"

StatusArea::StatusArea(QWidget *parent) :
    QWidget(parent),
    ui(new Ui::StatusArea)
{
    ui->setupUi(this);
}

StatusArea::~StatusArea()
{
    delete ui;
}