~ubuntu-branches/ubuntu/utopic/tcm/utopic

« back to all changes in this revision

Viewing changes to src/sd/bv/adsedgelabelparse.h

  • Committer: Bazaar Package Importer
  • Author(s): Otavio Salvador
  • Date: 2003-07-03 20:08:21 UTC
  • Revision ID: james.westby@ubuntu.com-20030703200821-se4xtqx25e5miczi
Tags: upstream-2.20
ImportĀ upstreamĀ versionĀ 2.20

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef _MYGUARDLABELPARSE_H
 
2
#define _MYGUARDLABELPARSE_H
 
3
 
 
4
 
 
5
#include "adspropertytype.h"
 
6
#include "adsclocktypes.h"
 
7
 
 
8
/* Functions for parsing labels on activity diagrams. */
 
9
#ifdef __cplusplus
 
10
extern "C" {
 
11
        typedef struct yy_buffer_state *YY_BUFFER_STATE;
 
12
        extern int adsedgelabelparse();
 
13
 
 
14
        extern YY_BUFFER_STATE adsedgelabel_scan_string(const char *str);
 
15
        extern int adsedgelabel_delete_buffer(YY_BUFFER_STATE);
 
16
        extern char adsedgelabel_errormsg[];
 
17
        extern char adsedgelabel_constraint[];
 
18
 
 
19
        extern int indexin, notindexin, hasaction,broadcast,iprop,ivar,iselse;  // see adsedgelabel.y
 
20
        extern char *propname[];        // see adsedgelabel.y
 
21
        extern char *varname[] ;        // see adsedgelabel.y
 
22
        extern char *inname[] ;        // see adsedgelabel.y
 
23
        extern char *notinname[] ;        // see adsedgelabel.y
 
24
 
 
25
  extern char *sendeventname;
 
26
        extern int iclock,isclock;
 
27
        extern int clockconstraint[];
 
28
        extern enum PropType clockconstrainttype[];  // after, when (mod)
 
29
        extern enum ClockType clocktype[];           // h/s/m 
 
30
 
 
31
        extern enum PropType proptype[];
 
32
        extern enum PropType vartype[];
 
33
}
 
34
#endif
 
35
 
 
36
 
 
37
 
 
38
#endif