Macros

Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
#ifndef CondCore_CondDB_DbConnectionString_h
#define CondCore_CondDB_DbConnectionString_h

#include "CondCore/CondDB/interface/Utils.h"
//
#include <string>

namespace cond {

  namespace persistency {

    std::pair<std::string, std::string> getConnectionParams(const std::string& initialConnection,
                                                            const std::string& transId,
                                                            const std::string& signature);

  }

}  // namespace cond

#endif