From 2f489c993780dd99bd823e7440666526ce0be124 Mon Sep 17 00:00:00 2001
From: Jolibois Simon <simon.jolibois@ecl19.ec-lyon.fr>
Date: Thu, 8 Apr 2021 18:10:26 +0000
Subject: [PATCH] Delete grille.h

---
 grille.h | 59 --------------------------------------------------------
 1 file changed, 59 deletions(-)
 delete mode 100644 grille.h

diff --git a/grille.h b/grille.h
deleted file mode 100644
index 04e5cd2..0000000
--- a/grille.h
+++ /dev/null
@@ -1,59 +0,0 @@
-#ifndef GRILLE_H
-#define GRILLE_H
-
-#include <QObject>
-#include <iostream>
-#include <math.h>
-
-#include <QFile>
-#include <QStringList>
-#include <QDebug>
-
-#include <algorithm>
-#include <string>
-
-using namespace std;
-
-class Grille //: public QObject
-{
-//    Q_OBJECT
-public:
-    Grille(int vd=0);
-    Grille(const Grille &D);
-    ~Grille();
-
-//    Q_PROPERTY(QList<QString> tableauQML READ readGrille NOTIFY grilleChanged)
-
-    Grille& operator=  (const Grille &D); // opérateur d'affectation
-    friend ostream& operator<< (ostream& sortie, Grille& V);
-
-    void Print();
-    void Init(int value);
-    void Set(int x, int y, int value);
-    int Get(int x, int y);
-    void EssaiJoueur();             // on regarde si la case (x_actif,y_actif) a la valeur chiffre_actif
-    void SelectChiffre(int c);
-    void SelectCase(int x,int y);
-    bool TestWin();
-
-
-private:
-    int** T;            // c'est le tableau que l'on complète
-    int chiffre_actif;  //la valeur sélectionnée à l'écran
-    int x_actif;        //abscisse case active
-    int y_actif;        //ordonnée case active
-    bool win;           // la partie est gagnée ou non
-
-
-
-    // Méthode privée (factorisation  de code)
-    void Alloc();
-    void Free();
-
-/*
-signals :
-    void grilleChanged();
-*/
-};
-
-#endif // GRILLE_H
-- 
GitLab