Files
libpcscxx/src/version.cxx
2015-03-03 15:56:02 +00:00

17 lines
444 B
C++

/*! @file
@id $Id$
*/
// 1 2 3 4 5 6 7 8
// 45678901234567890123456789012345678901234567890123456789012345678901234567890
#include <string>
namespace pcsc {
std::string version() {
return PACKAGE_NAME "-" PACKAGE_VERSION;
}
const std::string IDENT("$Id: " PACKAGE_NAME "-" PACKAGE_VERSION " $");
const std::string WHAT("#(@)" PACKAGE_NAME "-" PACKAGE_VERSION);
}