00001 #ifndef QPID_VERSION_H
00002 #define QPID_VERSION_H
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #include <string>
00023
00024 #ifdef HAVE_CONFIG_H
00025 # include "config.h"
00026 #endif
00027
00028 namespace qpid {
00029 #ifdef HAVE_CONFIG_H
00030 const std::string product = PACKAGE_NAME;
00031 const std::string version = PACKAGE_VERSION;
00032 # if HAVE_SASL
00033 const std::string saslName = BROKER_SASL_NAME;
00034 # else
00035 const std::string saslName = "qpidd-no-sasl";
00036 # endif
00037 #else
00038 const std::string product = "qpidc";
00039 const std::string version = "0.3";
00040 const std::string saslName = "qpid-broker";
00041 #endif
00042 }
00043
00044 #endif