Logo white

Groupe2_ProjetGl41 / GROUPE2_gl41

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • GROUPE2_gl41
  • presqueArriver
  • mainwindow.cpp
  • les fichiers de base
    486cca96
    Pierre Giraud authored
    2017-06-21 09:43:00 +0200  
    Browse Code ยป
mainwindow.cpp 219 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14
#include "mainwindow.h"
#include "ui_mainwindow.h"

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

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