| Line | |
|---|
| 1 | // ================================================================ // |
|---|
| 2 | // // |
|---|
| 3 | // File : defs.h // |
|---|
| 4 | // Purpose : // |
|---|
| 5 | // // |
|---|
| 6 | // Coded by Ralf Westram (coder@reallysoft.de) in November 2006 // |
|---|
| 7 | // Institute of Microbiology (Technical University Munich) // |
|---|
| 8 | // http://www.arb-home.de/ // |
|---|
| 9 | // // |
|---|
| 10 | // ================================================================ // |
|---|
| 11 | #ifndef DEFS_H |
|---|
| 12 | #define DEFS_H |
|---|
| 13 | |
|---|
| 14 | #ifndef _GLIBCXX_STRING |
|---|
| 15 | #include <string> |
|---|
| 16 | #endif |
|---|
| 17 | |
|---|
| 18 | #ifndef ARB_ASSERT_H |
|---|
| 19 | #include <arb_assert.h> |
|---|
| 20 | #endif |
|---|
| 21 | #ifndef ARBTOOLS_H |
|---|
| 22 | #include <arbtools.h> |
|---|
| 23 | #endif |
|---|
| 24 | |
|---|
| 25 | |
|---|
| 26 | #define gi_assert(cond) arb_assert(cond) |
|---|
| 27 | |
|---|
| 28 | // simple helper functions from ARBDB |
|---|
| 29 | const char *GBS_global_string(const char *templat, ...) __attribute__((format(printf, 1, 2))); |
|---|
| 30 | |
|---|
| 31 | #else |
|---|
| 32 | #error defs.h included twice |
|---|
| 33 | #endif // DEFS_H |
|---|
| 34 | |
|---|
Note: See
TracBrowser
for help on using the repository browser.