urtware / doc / classdiagrams / functions.iuml @ 982056f7
History | View | Annotate | Download (1.671 KB)
1 | 4d55cea4 | Thomas Schöpping | /' |
---|---|---|---|
2 | µRtWare is a lightweight publish/subscribe middleware for real-time |
||
3 | applications. It was developed as part of the software habitat for the |
||
4 | Autonomous Mini Robot [1] (AMiRo) but can be used for other purposes as well. |
||
5 | |||
6 | Copyright (C) 2018..2020 Thomas Schöpping et al. |
||
7 | |||
8 | This program is free software: you can redistribute it and/or modify |
||
9 | it under the terms of the GNU General Public License as published by |
||
10 | the Free Software Foundation, either version 3 of the License, or |
||
11 | (at your option) any later version. |
||
12 | |||
13 | This program is distributed in the hope that it will be useful, |
||
14 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
||
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||
16 | GNU General Public License for more details. |
||
17 | |||
18 | You should have received a copy of the GNU General Public License |
||
19 | along with this program. If not, see <http://www.gnu.org/licenses/>. |
||
20 | '/ |
||
21 | |||
22 | /' Generate a configuration object. '/ |
||
23 | 77bd2c61 | skenneweg | !procedure $configuration($name) |
24 | 4d55cea4 | Thomas Schöpping | class $name <<C,BFBFBF>> |
25 | 77bd2c61 | skenneweg | !endprocedure |
26 | 4d55cea4 | Thomas Schöpping | |
27 | /' Generate a enumeration definition. '/ |
||
28 | 77bd2c61 | skenneweg | !procedure $enumeration($name) |
29 | 4d55cea4 | Thomas Schöpping | class $name <<E,FF7F3F>> |
30 | 77bd2c61 | skenneweg | !endprocedure |
31 | 4d55cea4 | Thomas Schöpping | |
32 | /' Generate a type definition. '/ |
||
33 | 77bd2c61 | skenneweg | !procedure $type($name) |
34 | 4d55cea4 | Thomas Schöpping | class $name <<T,00CFFF>> |
35 | 77bd2c61 | skenneweg | !endprocedure |
36 | 4d55cea4 | Thomas Schöpping | |
37 | /' Generate a structure definition. '/ |
||
38 | 77bd2c61 | skenneweg | !procedure $structure($name) |
39 | 4d55cea4 | Thomas Schöpping | class $name <<S,BFAFFF>> |
40 | 77bd2c61 | skenneweg | !endprocedure |
41 | 4d55cea4 | Thomas Schöpping | |
42 | /' generate a union structure definition '/ |
||
43 | 77bd2c61 | skenneweg | !procedure $union($name) |
44 | 4d55cea4 | Thomas Schöpping | class $name <<U,7FCF7F>> |
45 | 77bd2c61 | skenneweg | !endprocedure |
46 | 4d55cea4 | Thomas Schöpping | |
47 | /' Generate a function declaration. '/ |
||
48 | 77bd2c61 | skenneweg | !procedure $function($name) |
49 | 4d55cea4 | Thomas Schöpping | class $name <<F,E0E0E0>> |
50 | 77bd2c61 | skenneweg | !endprocedure |
51 | 4d55cea4 | Thomas Schöpping | |
52 | /' Generate a group. '/ |
||
53 | 77bd2c61 | skenneweg | !procedure $group($name) |
54 | 4d55cea4 | Thomas Schöpping | package "$name" <<Rectangle>> |
55 | 77bd2c61 | skenneweg | !endprocedure |
56 | 4d55cea4 | Thomas Schöpping | |
57 | 77bd2c61 | skenneweg | !procedure $module($name) |
58 | 4d55cea4 | Thomas Schöpping | package "$name" <<Node>> |
59 | 77bd2c61 | skenneweg | !endprocedure |