Medical Imaging Interaction Toolkit
2016.11.0
Medical Imaging Interaction Toolkit
Home
Manual
API Reference
Download
Bugzilla
Groups
Namespace List
Class List
File List
Examples
File List
File Members
ompver.cpp
Go to the documentation of this file.
1
2
#include <stdio.h>
3
#include <omp.h>
4
const
char
ompver_str
[] = {
'I'
,
'N'
,
'F'
,
'O'
,
':'
,
'O'
,
'p'
,
'e'
,
'n'
,
'M'
,
5
'P'
,
'-'
,
'd'
,
'a'
,
't'
,
'e'
,
'['
,
6
(
'0'
+ ((_OPENMP/100000)%10)),
7
(
'0'
+ ((_OPENMP/10000)%10)),
8
(
'0'
+ ((_OPENMP/1000)%10)),
9
(
'0'
+ ((_OPENMP/100)%10)),
10
(
'0'
+ ((_OPENMP/10)%10)),
11
(
'0'
+ ((_OPENMP/1)%10)),
12
']'
,
'\0'
};
13
int
main
(
int
argc,
char
*argv[])
14
{
15
printf(
"%s\n"
,
ompver_str
);
16
return
0;
17
}
main
int main(int argc, char *argv[])
Definition:
ompver.cpp:13
ompver_str
const char ompver_str[]
Definition:
ompver.cpp:4
CMakeFiles
FindOpenMP
ompver.cpp
Generated on Fri Feb 3 2017 20:52:12 for Medical Imaging Interaction Toolkit by
1.8.9.1