source: tags/arb_5.3/GENOM_IMPORT/defs.h

Last change on this file was 5777, checked in by westram, 15 years ago
  • again removed timestamps
File size: 1.1 KB
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 _CPP_STRING
15#include <string>
16#endif
17
18using std::string;
19
20#ifndef ARB_ASSERT_H
21#include <arb_assert.h>
22#endif
23#ifndef ARBTOOLS_H
24#include <arbtools.h>
25#endif
26
27
28#define gi_assert(cond) arb_assert(cond)
29
30// simple helper functions from ARBDB
31extern "C" {
32    const char *GBS_global_string(const char *templat, ...) __attribute__((format(printf, 1, 2)));
33}
34   
35#else
36#error defs.h included twice
37#endif // DEFS_H
38
Note: See TracBrowser for help on using the repository browser.