summaryrefslogtreecommitdiff
path: root/include/gras/element.hpp
diff options
context:
space:
mode:
authorJosh Blum2013-07-05 18:50:01 -0700
committerJosh Blum2013-07-05 18:50:01 -0700
commitfc80d2c0acec4f668b58a05bd5a3a06b0a2a2280 (patch)
tree29433c49392b458aa40b318b11a3afb34b918625 /include/gras/element.hpp
parentdf32957fb259989b6c269c10808e550e0913b652 (diff)
downloadsandhi-fc80d2c0acec4f668b58a05bd5a3a06b0a2a2280.tar.gz
sandhi-fc80d2c0acec4f668b58a05bd5a3a06b0a2a2280.tar.bz2
sandhi-fc80d2c0acec4f668b58a05bd5a3a06b0a2a2280.zip
gras: begin replacing set/get with callable
Diffstat (limited to 'include/gras/element.hpp')
-rw-r--r--include/gras/element.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/gras/element.hpp b/include/gras/element.hpp
index 47fbae6..9b46d76 100644
--- a/include/gras/element.hpp
+++ b/include/gras/element.hpp
@@ -9,6 +9,7 @@
#endif //_MSC_VER
#include <gras/gras.hpp>
+#include <gras/callable.hpp>
#include <gras/weak_container.hpp>
#include <boost/shared_ptr.hpp>
@@ -18,7 +19,7 @@ namespace gras
/*!
* Element is a base class for all topological elements.
*/
-struct GRAS_API Element : boost::shared_ptr<ElementImpl>
+struct GRAS_API Element : Callable, boost::shared_ptr<ElementImpl>
{
//! Create an empty element
Element(void);