|
Revision 5968, 1.1 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 : awti_import.hxx // |
|---|
| 4 | // Purpose : // |
|---|
| 5 | // // |
|---|
| 6 | // Institute of Microbiology (Technical University Munich) // |
|---|
| 7 | // http://www.arb-home.de/ // |
|---|
| 8 | // // |
|---|
| 9 | // =========================================================== // |
|---|
| 10 | |
|---|
| 11 | #ifndef AWTI_IMPORT_HXX |
|---|
| 12 | #define AWTI_IMPORT_HXX |
|---|
| 13 | |
|---|
| 14 | |
|---|
| 15 | #define AWAR_READ_GENOM_DB "tmp/import/genom_db" |
|---|
| 16 | |
|---|
| 17 | typedef enum { IMP_GENOME_FLATFILE, IMP_PLAIN_SEQUENCE } AWTI_ImportType; |
|---|
| 18 | |
|---|
| 19 | #define AWTC_RCB(func) void (*func)(AW_root*,AW_CL,AW_CL) |
|---|
| 20 | |
|---|
| 21 | GBDATA *open_AWTC_import_window(AW_root *awr,const char *defname, bool do_exit, GBDATA *gb_main, AWTC_RCB(func), AW_CL cd1, AW_CL cd2); |
|---|
| 22 | void AWTC_import_set_ali_and_type(AW_root *awr, const char *ali_name, const char *ali_type, GBDATA *gbmain); |
|---|
| 23 | |
|---|
| 24 | |
|---|
| 25 | #else |
|---|
| 26 | #error awti_import.hxx included twice |
|---|
| 27 | #endif // AWTI_IMPORT_HXX |
|---|