CernVM-FS  2.12.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
repository_tag.h
Go to the documentation of this file.
1 
5 #ifndef CVMFS_REPOSITORY_TAG_H_
6 #define CVMFS_REPOSITORY_TAG_H_
7 
8 #include <string>
9 
11  public:
13  RepositoryTag(const std::string& name,
14  const std::string& description);
15 
16  void SetName(const std::string& name) {
17  name_ = name;
18  }
19  void SetDescription(const std::string& description) {
21  }
22 
23  bool HasGenericName();
24  void SetGenericName();
25 
26  std::string name() const { return name_; }
27  std::string description() const { return description_; }
28 
29  private:
30  std::string name_;
31  std::string description_;
32 };
33 
34 #endif // CVMFS_REPOSITORY_TAG_H_
std::string name() const
void SetGenericName()
std::string description() const
std::string name_
void SetName(const std::string &name)
std::string description_
void SetDescription(const std::string &description)
bool HasGenericName()