summaryrefslogtreecommitdiff
path: root/dnn/behaviour.cc
diff options
context:
space:
mode:
Diffstat (limited to 'dnn/behaviour.cc')
-rwxr-xr-xdnn/behaviour.cc42
1 files changed, 42 insertions, 0 deletions
diff --git a/dnn/behaviour.cc b/dnn/behaviour.cc
new file mode 100755
index 0000000..f85bd20
--- /dev/null
+++ b/dnn/behaviour.cc
@@ -0,0 +1,42 @@
+/*
+ * DNN - Data News Network
+ *
+ * by Stephane Chatty
+ *
+ * Copyright 1993-1996
+ * Centre d'Etudes de la Navigation Aerienne (CENA)
+ *
+ * Behaviours.
+ *
+ * $Id$
+ * $CurLog$
+ */
+
+#include "Behaviour.h"
+
+#if 0
+template <class T>
+CcuKey*
+DnnBehaviourOf<T> :: GetEventType (CcuToken* t)
+{
+ DnnEvent* e = (DnnEvent*) t;
+ return (CcuKey*) t->GetType ();
+}
+#endif
+
+#if 0
+
+DnnSuperState :: DnnSuperState (const char* name, CcuAutomaton& a)
+: CcuBaseState (name, a),
+ Criteria ()
+{
+}
+
+void
+DnnSuperState :: CreateLink (DnnSuperState* to, DnnCriterion* c)
+{
+ CcuHashCellOf <CcuBaseLink>* c = Links.Add ();
+ c->SetInfo (new DnnActionOf
+}
+#endif
+