|
Revision 5968, 1.0 KB
(checked in by westram, 3 years ago)
|
- new flag -w to aisc_mkpt (add include wrapper)
- uniform style for several include wrappers
- removed duplicated includes
- removed useless nt_concatenate.hxx
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 | // =========================================================== // |
|---|
| 2 | // // |
|---|
| 3 | // File : dist.hxx // |
|---|
| 4 | // Purpose : // |
|---|
| 5 | // // |
|---|
| 6 | // Institute of Microbiology (Technical University Munich) // |
|---|
| 7 | // http://www.arb-home.de/ // |
|---|
| 8 | // // |
|---|
| 9 | // =========================================================== // |
|---|
| 10 | |
|---|
| 11 | #ifndef DIST_HXX |
|---|
| 12 | #define DIST_HXX |
|---|
| 13 | |
|---|
| 14 | #ifndef AWT_SEQ_DNA_HXX |
|---|
| 15 | #include <awt_seq_dna.hxx> |
|---|
| 16 | #endif |
|---|
| 17 | #ifndef AWT_SEQ_SIMPLE_PRO_HXX |
|---|
| 18 | #include <awt_seq_simple_pro.hxx> |
|---|
| 19 | #endif |
|---|
| 20 | |
|---|
| 21 | #define di_assert(cond) arb_assert(cond) |
|---|
| 22 | |
|---|
| 23 | extern GBDATA *GLOBAL_gb_main; |
|---|
| 24 | GBT_TREE *neighbourjoining(char **names, AP_FLOAT **m, long size, size_t structure_size); |
|---|
| 25 | |
|---|
| 26 | #else |
|---|
| 27 | #error dist.hxx included twice |
|---|
| 28 | #endif // DIST_HXX |
|---|