ITK Function Reference
(V10000.1.0.60_20160308.00)
Main Page
Related Pages
Modules
Data Structures
Files
File List
Globals
tccore
uom.h
Go to the documentation of this file.
1
/*==============================================================================
2
Copyright (c) 2003-2005 UGS Corporation
3
Unpublished - All Rights Reserved
4
==============================================================================*/
5
12
/* */
13
14
#ifndef UOM_H_INCLUDED
15
#define UOM_H_INCLUDED
16
17
#include <
tccore/uom_errors.h
>
18
#include <tccore/libtccore_exports.h>
19
20
/* END OF HEADER */
21
22
#ifdef __cplusplus
23
extern
"C"
{
24
#endif
25
57
extern
TCCORE_API
int
UOM_extent
(
58
int
* n_uoms,
59
tag_t
** uoms
60
);
61
65
extern
TCCORE_API
int
UOM_ask_name
(
66
tag_t
uom,
67
char
** name
68
);
69
73
extern
TCCORE_API
int
UOM_ask_symbol
(
74
tag_t
uom,
75
char
** symbol
76
);
77
81
extern
TCCORE_API
int
UOM_find_by_name
(
82
const
char
* name,
83
tag_t
* uom
85
);
86
90
extern
TCCORE_API
int
UOM_find_by_symbol
(
91
const
char
* symbol,
92
tag_t
* uom
94
);
95
98
#ifdef __cplusplus
99
}
100
#endif
101
102
#include <tccore/libtccore_undef.h>
103
104
#endif
105