mirror of
https://github.com/schrodinger/pymol-open-source.git
synced 2026-06-04 20:04:21 +08:00
14 lines
367 B
C
14 lines
367 B
C
#ifndef _PyMOL_VERSION
|
|
#define _PyMOL_VERSION "3.2.0a"
|
|
#endif
|
|
|
|
/* for session file compatibility */
|
|
|
|
#ifndef _PyMOL_VERSION_int
|
|
// X.Y.Z -> XYYYZZZ
|
|
#define _PyMOL_VERSION_int 3000000
|
|
// 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
|