GCC Code Coverage Report
Directory: cvmfs/ Exec Total Coverage
File: cvmfs/repository_tag.h Lines: 1 2 50.0 %
Date: 2019-02-03 02:48:13 Branches: 0 0 - %

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_