lyx_mirror/src/version.cpp
Enrico Forestieri 5321a41fe1 So, let's constify all globals in version.cpp...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@37594 a592a061-630c-0410-9148-cb99ea01b6c8
2011-02-11 00:46:49 +00:00

27 lines
730 B
C++

/* -*- C++ -*- */
/**
* \file version.cpp
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Jean-Marc Lasgouttes
*
* Full author contact details are available in file CREDITS.
*/
#include <config.h>
///
extern char const * const lyx_version = PACKAGE_VERSION;
///
extern const int lyx_version_major = LYX_MAJOR_VERSION;
extern const int lyx_version_minor = LYX_MINOR_VERSION;
///
extern char const * const lyx_release_date = LYX_DATE;
/// Package identifier (lyx[-<version-suffix>])
extern char const * const lyx_package = PACKAGE;
/// This is the version information shown by 'lyx --version'
extern char const * const lyx_version_info = VERSION_INFO;