mirror of
https://github.com/schrodinger/pymol-open-source.git
synced 2026-06-04 20:04:21 +08:00
14 lines
368 B
C
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
|