summaryrefslogtreecommitdiff
path: root/dnn/behaviour.cc
blob: f85bd2000a8669d5305803e5ef942c08383355d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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