Initial version of donated sources by Avertec, 3.4p5.
[tas-yagle.git] / distrib / sources / tas / stm / stm_prop.h
1 /****************************************************************************/
2 /* */
3 /* Chaine de CAO & VLSI AVERTEC */
4 /* */
5 /* Produit : STM Version 1.00 */
6 /* Fichier : stm_prop.h */
7 /* */
8 /* (c) copyright 2000 AVERTEC */
9 /* Tous droits reserves */
10 /* */
11 /* Auteur(s) : Gilles Augustins */
12 /* */
13 /****************************************************************************/
14
15 #ifndef STM_PROP_H
16 #define STM_PROP_H
17
18 #include STM_H
19
20 /* constructors */
21 extern timing_props *stm_prop_create (timing_model *resmodel, timing_model *capmodel);
22 extern timing_props *stm_get_prop();
23 extern void stm_addresmodel (timing_props *properties, timing_model *resmodel);
24 extern void stm_addcapmodel (timing_props *properties, timing_model *capmodel);
25
26 /* destructors */
27 extern void stm_prop_destroy (timing_props *properties);
28
29 /*modifiers*/
30 extern timing_table *stm_prop_seg2tbl (chain_list *chainseg, char type);
31 extern void stm_scale_loadmodel (timing_model *model, float scale);
32
33
34 #endif