Files
pymol-open-source/layer0/Version.h
2021-07-08 09:41:29 -04:00

14 lines
368 B
C

#ifndef _PyMOL_VERSION
#define _PyMOL_VERSION "2.6.0a0"
#endif
/* for session file compatibility */
#ifndef _PyMOL_VERSION_int
// X.Y.Z -> XYYYZZZ
#define _PyMOL_VERSION_int 2004000
// Note: There should have never been a "double" version, it's
// the least useful variant to specify a version.
#define _PyMOL_VERSION_double (_PyMOL_VERSION_int / 1000000.)
#endif