1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>YAKINDU Statechart Tools Default Domain</title>
- <style media="screen" type="text/css">
- html {
- font-family: sans-serif;
- font-size: 10px;
- -webkit-text-size-adjust: 100%;
- -ms-text-size-adjust: 100%;
- }
- body {
- margin: 20;
- font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
- font-size: 14px;
- line-height: 1.42857143;
- color: #333;
- background-color: #fff;
- }
- h1,
- h2,
- h3,
- h4,
- h5,
- h6,
- .h1,
- .h2,
- .h3,
- .h4,
- .h5,
- .h6 {
- font-family: inherit;
- font-weight: 500;
- line-height: 1.1;
- color: inherit;
- }
- h1,
- .h1,
- h2,
- .h2,
- h3,
- .h3 {
- margin-top: 20px;
- margin-bottom: 10px;
- }
- h2,
- .h2 {
- font-size: 30px;
- }
- </style>
- </head>
- <body class="body-container">
- <div class="primary">
- <h2>YAKINDU Statechart Tools - Default Domain</h2>
- <div>
- <p>
- YAKINDU Statechart Tools 'Default Domain' is a platform independent domain with a basic type system.
- Choose this domain if you are new to YAKINDU Statechart Tools or you want to develop a generic statemachine, for for example to generate C, C++ or Java code.
- <br />
- </p>
-
- <h3>Default Type System</h3>
- The 'Default Domain' integrated type system consists of the following simple types:
- <ul>
- <li>integer</li>
- <li>real</li>
- <li>boolean</li>
- <li>string</li>
- <li>void</li>
- </ul>
- <p>
- Depending on the code generator, these types will be mapped to language specific types.
- For C and C++, this is configurable via the generated sc_types.h. For exmaple, the type integer will be mapped to an int32_t.
- </p>
- </div>
- </body>
- </html>
|