|
Last change
on this file was
19297,
checked in by westram, 3 years ago
|
|
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
|
File size:
1.3 KB
|
| Line | |
|---|
| 1 | // =============================================================== // |
|---|
| 2 | // // |
|---|
| 3 | // File : mpdefs.h // |
|---|
| 4 | // Purpose : // |
|---|
| 5 | // // |
|---|
| 6 | // Institute of Microbiology (Technical University Munich) // |
|---|
| 7 | // http://www.arb-home.de/ // |
|---|
| 8 | // // |
|---|
| 9 | // =============================================================== // |
|---|
| 10 | |
|---|
| 11 | #ifndef MPDEFS_H |
|---|
| 12 | #define MPDEFS_H |
|---|
| 13 | |
|---|
| 14 | #include <PT_com.h> |
|---|
| 15 | |
|---|
| 16 | #define SEPARATOR "#" |
|---|
| 17 | |
|---|
| 18 | #define NON_WEIGHTED 0 |
|---|
| 19 | |
|---|
| 20 | enum { |
|---|
| 21 | MP_NO_PROBE = 0, |
|---|
| 22 | MP_PROBE1 = 1, |
|---|
| 23 | MP_PROBE2 = 2, |
|---|
| 24 | MP_PROBE3 = 4, |
|---|
| 25 | MP_PROBE4 = 8, |
|---|
| 26 | MP_PROBE5 = 16, |
|---|
| 27 | MP_PROBE6 = 32, |
|---|
| 28 | MP_PROBE7 = 64, |
|---|
| 29 | MP_PROBE8 = 128 |
|---|
| 30 | }; |
|---|
| 31 | |
|---|
| 32 | class Bakt_Info; |
|---|
| 33 | class Hit; |
|---|
| 34 | class Sonde; |
|---|
| 35 | class MO_Liste; |
|---|
| 36 | class Sondentopf; |
|---|
| 37 | |
|---|
| 38 | struct MO_Mismatch { |
|---|
| 39 | long nummer; |
|---|
| 40 | double mismatch; |
|---|
| 41 | }; |
|---|
| 42 | |
|---|
| 43 | |
|---|
| 44 | struct MP_list_elem { |
|---|
| 45 | void *elem; |
|---|
| 46 | MP_list_elem *next; |
|---|
| 47 | }; |
|---|
| 48 | |
|---|
| 49 | struct mp_gl_struct { |
|---|
| 50 | aisc_com *link; |
|---|
| 51 | T_PT_LOCS locs; |
|---|
| 52 | T_PT_MAIN com; |
|---|
| 53 | }; |
|---|
| 54 | |
|---|
| 55 | #else |
|---|
| 56 | #error mpdefs.h included twice |
|---|
| 57 | #endif // MPDEFS_H |
|---|
Note: See
TracBrowser
for help on using the repository browser.