Move definition of EbmlCodeVersion into the library

git-svn-id: https://matroska.svn.sourceforge.net/svnroot/matroska/trunk/libebml@803 a6f86f6d-0131-4f8e-9e7b-e335508773d5
This commit is contained in:
Moritz Bunkus 2011-09-11 09:03:43 +00:00
parent 2490c80ad1
commit 9a31b3864c
2 changed files with 46 additions and 43 deletions

View File

@ -44,8 +44,8 @@ START_LIBEBML_NAMESPACE
#define LIBEBML_VERSION 0x010202 #define LIBEBML_VERSION 0x010202
static const std::string EbmlCodeVersion = "1.2.2"; extern const std::string EbmlCodeVersion;
static const std::string EbmlCodeDate = __TIMESTAMP__; extern const std::string EbmlCodeDate;
/*! /*!
\todo Closer relation between an element and the context it comes from (context is an element attribute ?) \todo Closer relation between an element and the context it comes from (context is an element attribute ?)

View File

@ -38,4 +38,7 @@
START_LIBEBML_NAMESPACE START_LIBEBML_NAMESPACE
const std::string EbmlCodeVersion = "1.2.2";
const std::string EbmlCodeDate = __TIMESTAMP__;
END_LIBEBML_NAMESPACE END_LIBEBML_NAMESPACE