File: global_variables.h

package info (click to toggle)
hilive 2.0a-5
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 956 kB
  • sloc: cpp: 4,723; python: 241; xml: 188; sh: 35; makefile: 14
file content (14 lines) | stat: -rw-r--r-- 244 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef GLOBAL_VARIABLES_H
#define GLOBAL_VARIABLES_H

#include "../lib/headers.h"

class AlignmentSettings;
class KixRun;

extern AlignmentSettings globalAlignmentSettings;
extern KixRun* idx;

extern mutex_map<std::string> fileLocks;

#endif