source: _old/app/src/dgp/mgraph.hh @ 1e121f4

Last change on this file since 1e121f4 was 1e121f4, checked in by Adam Kędziora <s301614@…>, 14 years ago

Replacing old implementation with working implementation

  • Property mode set to 100644
File size: 460 bytes
Line 
1#ifndef _MGRAPH_HH
2#define _MGRAPH_HH
3
4#include <vector>
5
6#include "const.hh"
7#include "thesymbols.hh"
8#include "../common/common.h"
9
10class MNode
11{
12public:
13
14  char           type[MAXFORMLEN];
15  Cat            cat;
16  int            pos;
17  vector<MNode*> pred;
18  vector<int>    snodes;
19
20  void           clear() { snodes.clear(); };
21};
22
23class MGraph
24{
25 public:
26
27  MNode nodes[MAXNODES];
28  int   n;
29
30  void clear() { n=0; };
31  int add_node(char* seg);
32};
33
34#endif
Note: See TracBrowser for help on using the repository browser.