Overview
Comment:Accept component types in upper or lower case.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | origin/master | trunk
Files: files | file ages | folders
SHA3-256: ceef333d87447124334e02244e7fce8adc65cba6a2321d2e019c667e9e666095
User & Date: geraint@users.sourceforge.net on 2004-08-29 17:25:46
Other Links: branch diff | manifest | tags
Context
2004-08-29
17:27:43
Define effort, flow and state as enum elements. thus allowing
them to be included in CRs without being declared or quoted.
check-in: d392f9d9c1 user: geraint@users.sourceforge.net tags: origin/master, trunk
17:25:46
Accept component types in upper or lower case. check-in: ceef333d87 user: geraint@users.sourceforge.net tags: origin/master, trunk
16:09:49
Added option -no-reduce

Code sorting can now be used with Reduce (via sese.r) so that existing CRs
work with sorted code (using -make-sort or -sort), or without by using
-no-reduce; this option implies -make-sort. check-in: 9c3c6b8bfc user: geraint@users.sourceforge.net tags: origin/master, trunk

Changes

Modified mttroot/mtt/lib/cr/hh/components.hh from [3ec9db13a8] to [2fc3af9d6e].

1
2
3
4
5
6
7

8
9
10
11
12
13
#ifndef COMPONENTS_HH
#define COMPONENTS_HH

// $ cd $(echo $MTT_COMPONENTS/simple | sed 's/\.://')
// $ ls *_eqn.m | gawk -F_ '{printf ("%s, ", $1)}'
enum component {
  AE, AF, C, EBTF, EMTF, ES, FMR, FP, GY, I, PS, RST, RS, R, SS, TF

};

typedef enum component component_t;
  

#endif






|
>






1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef COMPONENTS_HH
#define COMPONENTS_HH

// $ cd $(echo $MTT_COMPONENTS/simple | sed 's/\.://')
// $ ls *_eqn.m | gawk -F_ '{printf ("%s, ", $1)}'
enum component {
  AE, AF, C, EBTF, EMTF, ES, FMR, FP, GY, I, PS, RST, RS, R, SS, TF,
  ae, af, c, ebtf, emtf, es, fmr, fp, gy, i, ps, rst, rs, r, ss, tf
};

typedef enum component component_t;
  

#endif


MTT: Model Transformation Tools
GitHub | SourceHut | Sourceforge | Fossil RSS ]