From 1017140753802859be15437f077d51ba386ed5cb Mon Sep 17 00:00:00 2001
From: Christophe Geuzaine <cgeuzaine@ulg.ac.be>
Date: Fri, 9 Oct 2009 21:14:06 +0000
Subject: [PATCH] add not to SElement

---
 Solver/SElement.cpp | 17 +++++++++++++++++
 Solver/SElement.h   |  4 ++++
 2 files changed, 21 insertions(+)

diff --git a/Solver/SElement.cpp b/Solver/SElement.cpp
index 32a4505bbb..5be09e28ca 100644
--- a/Solver/SElement.cpp
+++ b/Solver/SElement.cpp
@@ -1,5 +1,22 @@
 #include "SElement.h"
 
+// FIXME: this will change in the future (the base SElement should no
+// contain anything except the MElement). More advanced solvers will
+// derive and/or add containers for additional storage
+
+/*
+class SFunctionSpace{
+
+}
+
+class SFunctionSpaceXFEM : class SFunctionSpace{
+
+}
+
+etc.
+
+ */
+
 simpleFunction<double> * SElement::_enrichement_s = 0,* SElement::_enrichement_t = 0;
 
 void SElement::gradNodalFunctions ( double u, double v, double w, double invjac[3][3],double Grads[][3],
diff --git a/Solver/SElement.h b/Solver/SElement.h
index 518800fefa..d921d4ff5e 100644
--- a/Solver/SElement.h
+++ b/Solver/SElement.h
@@ -11,6 +11,10 @@
 
 // A solver element.
 
+// FIXME: this will change in the future (the base SElement should no
+// contain anything except the MElement). More advanced solvers will
+// derive and/or add containers for additional storage
+
 class SElement
 {
  private:
-- 
GitLab