DOpE
versionscheck.h
Go to the documentation of this file.
1 
2 #ifndef VERSIONSCHECK_H_
3 #define VERSIONSCHECK_H_
4 
5 #define DEAL_II_VERSION_LT(major,minor) (DEAL_II_MAJOR_VERSION * 10000 + \
6  DEAL_II_MINOR_VERSION < (major)*10000 + (minor))
7 
8 #ifndef DEAL_II_VERSION_GTE
9 #define DEAL_II_VERSION_GTE(major,minor,small) (DEAL_II_MAJOR_VERSION * 10000 + \
10  DEAL_II_MINOR_VERSION >= (major)*10000 + (minor))
11 #endif
12 
13 #endif /* _VERSIONSCHECK_H_ */