GCC Code Coverage Report | |||||||||||||||||||||
|
|||||||||||||||||||||
Line | Branch | Exec | Source |
1 |
/** |
||
2 |
* This file is part of the CernVM File System. |
||
3 |
*/ |
||
4 |
|||
5 |
#ifndef CVMFS_REPOSITORY_TAG_H_ |
||
6 |
#define CVMFS_REPOSITORY_TAG_H_ |
||
7 |
|||
8 |
#include <string> |
||
9 |
|||
10 |
11 |
struct RepositoryTag { |
|
11 |
RepositoryTag() : name_(""), channel_(""), description_("") {} |
||
12 |
|||
13 |
RepositoryTag(const std::string& name, |
||
14 |
const std::string& channel, |
||
15 |
const std::string& description); |
||
16 |
|||
17 |
std::string name_; |
||
18 |
std::string channel_; |
||
19 |
std::string description_; |
||
20 |
}; |
||
21 |
|||
22 |
#endif // CVMFS_REPOSITORY_TAG_H_ |
Generated by: GCOVR (Version 4.1) |