SCM Repository
Annotation of /trunk/src/compiler/fields/raw-types.sml
Parent Directory
|
Revision Log
Revision 201 -
(view)
(download)
Original Path: trunk/src/compiler/common/raw-types.sml
1 : | jhr | 141 | (* raw-types.sml |
2 : | * | ||
3 : | * COPYRIGHT (c) 2010 The Diderot Project (http://diderot.cs.uchicago.edu) | ||
4 : | * All rights reserved. | ||
5 : | * | ||
6 : | * This file defines the representation of the raw scalar types used to | ||
7 : | * define image data in the NRRD file format. | ||
8 : | *) | ||
9 : | |||
10 : | structure RawTypes = | ||
11 : | struct | ||
12 : | |||
13 : | (* raw numeric types as supported by NRRD *) | ||
14 : | datatype ty | ||
15 : | = RT_Int8 | RT_UInt8 | ||
16 : | | RT_Int16 | RT_UInt16 | ||
17 : | | RT_Int32 | RT_UInt32 | ||
18 : | | RT_Int64 | RT_UInt64 | ||
19 : | | RT_Float | RT_Double | ||
20 : | |||
21 : | end |
root@smlnj-gforge.cs.uchicago.edu | ViewVC Help |
Powered by ViewVC 1.0.0 |