summaryrefslogtreecommitdiff
path: root/canevas.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'canevas.cpp')
-rw-r--r--canevas.cpp46
1 files changed, 46 insertions, 0 deletions
diff --git a/canevas.cpp b/canevas.cpp
new file mode 100644
index 0000000..bc7a0e5
--- /dev/null
+++ b/canevas.cpp
@@ -0,0 +1,46 @@
+/********
+ * Fichier: canevas.cpp
+ * Auteurs: C.-A. Brunet
+ * Date: 08 janvier 2018 (creation)
+ * Description: Implementation des methodes des classes decrites dans
+ * canevas.h. Ce fichier fait partie de la distribution de Graphicus.
+********/
+
+#include "canevas.h"
+
+Canevas::Canevas() {
+}
+
+Canevas::~Canevas() {
+}
+
+bool Canevas::reinitialiser() {
+ return true;
+}
+
+bool Canevas::activerCouche(int index) {
+ return true;
+}
+
+bool Canevas::cacherCouche(int index) {
+ return true;
+}
+
+bool Canevas::ajouterForme(Forme *p_forme) {
+ return true;
+}
+
+bool Canevas::retirerForme(int index) {
+ return true;
+}
+
+double Canevas::aire() {
+ return 0.0;
+}
+
+bool Canevas::translater(int deltaX, int deltaY) {
+ return true;
+}
+
+void Canevas::afficher(ostream & s) {
+}