ATLAS Offline Software
Loading...
Searching...
No Matches
DbString.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3*/
4
5// $Id: DbString.h 726071 2016-02-25 09:23:05Z krasznaa $
6//====================================================================
7//
8// @author M.Frank
9//====================================================================
10#ifndef POOL_DBSTRING_H
11#define POOL_DBSTRING_H 1
12
13#include <string>
14
15/*
16 * POOL namespace declaration
17 */
18namespace pool {
20 class DbString : public std::string {
21 public:
25 DbString(const std::string& s) { assign(s); }
27 virtual ~DbString() {}
28 };
29}
30#endif // POOL_DBSTRING_H
DbString(const std::string &s)
Constructor with initializer.
Definition DbString.h:25
virtual ~DbString()
Standard destructor.
Definition DbString.h:27
DbString()
Standard Constructor.
Definition DbString.h:23
pool namespace
Definition libname.h:15