Overview
| Comment: | Accept component types in upper or lower case. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
ceef333d87447124334e02244e7fce8a |
| User & Date: | geraint@users.sourceforge.net on 2004-08-29 17:25:46.000 |
| 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 | |
Changes
Modified mttroot/mtt/lib/cr/hh/components.hh
from [3ec9db13a8]
to [2fc3af9d6e].
1 2 3 4 5 6 |
#ifndef COMPONENTS_HH
#define COMPONENTS_HH
// $ cd $(echo $MTT_COMPONENTS/simple | sed 's/\.://')
// $ ls *_eqn.m | gawk -F_ '{printf ("%s, ", $1)}'
enum component {
| | > | 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
|