ITK Function Reference
(V10000.1.0.60_20160308.00)
Main Page
Related Pages
Modules
Data Structures
Files
File List
Globals
ai
sample_inh.h
Go to the documentation of this file.
1
/*==============================================================================
2
Copyright (c) 2003-2005 UGS Corporation
3
Unpublished - All Rights Reserved
4
==============================================================================*/
5
6
/*
7
H+++ File description:
8
9
This file contains some definition related to Application Interface module.
10
11
File : sample_inh.h
12
Module : user_exits
13
*/
14
15
#define APP_NAME "SampleForm"
16
#define APP_PASSWD "sampleform"
17
18
/* Define for the class name */
19
20
#define SAMPLE_FORM_CLASS_NAME "SampleForm"
21
22
/* Defines for the attribute names */
23
24
#define SF_ID "id"
25
#define SF_DESC "desc"
26
#define SF_TYPE "type"
27
#define SF_SIZE "size"
28
#define SF_MAT "material"
29
30
/* Define the string size for string attributes, */
31
/* needed by database and POM_define_attr functions */
32
33
#define ID_STR_SIZE 30
34
#define DESC_STR_SIZE 200
35
#define TYPE_STR_SIZE 30
36
#define SIZE_STR_SIZE 30
37
#define MAT_STR_SIZE 30
38
39
40
/* combination of attribute types for the attributes */
41
42
#define ATTR_TYPE ( (POM_null_is_valid + POM_public_read + POM_public_write) )