CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_6_2_5/src/FWCore/Version/src/GetReleaseVersion.cc

Go to the documentation of this file.
00001 #include "FWCore/Version/interface/GetReleaseVersion.h"
00002 
00003 #define STRINGIFY_(x_) #x_
00004 #define STRINGIFY(x_) STRINGIFY_(x_)
00005 
00006 namespace edm {
00007   std::string getReleaseVersion() {
00008     static std::string const releaseVersion(STRINGIFY(PROJECT_VERSION));
00009     return releaseVersion; 
00010   }
00011 }