From: Stéphane Domas Date: Wed, 26 Apr 2017 12:19:43 +0000 (+0200) Subject: 1st commit of all files X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/blast.git/commitdiff_plain/9e7fe27afe16f3f1908381e6d03d70b7dfa09102 1st commit of all files --- diff --git a/Toto.cpp b/Toto.cpp deleted file mode 100644 index 0e5fb15..0000000 --- a/Toto.cpp +++ /dev/null @@ -1,12 +0,0 @@ -#include "Toto.h" - -#include "FunctionalBlock.h" -#include "ReferenceBlock.h" -#include "ReferenceInterface.h" -#include "FunctionalInterface.h" -#include "BlockParameter.h" - - -Toto::Toto(const QString& msg) { - v = msg; -} diff --git a/Toto.h b/Toto.h deleted file mode 100644 index 1980e26..0000000 --- a/Toto.h +++ /dev/null @@ -1,35 +0,0 @@ -#ifndef __TOTO_H__ -#define __TOTO_H__ - -#include -#include - -#include -#include - -class ReferenceBlock; -class FunctionalBlock; -class AbstractInterface; - - -#include "ArithmeticEvaluator.h" -class ArithmeticEvaluator; - -#include "Exception.h" -class Exception; - -using namespace std; -using namespace Qt; - -class Toto { - -public: - - Toto(const QString& msg); - -private: - QString v; -}; - -#endif // __TOTO_H__ -