GCC Code Coverage Report


Directory: cvmfs/
File: cvmfs/swissknife_gc.h
Date: 2026-04-26 02:35:59
Exec Total Coverage
Lines: 0 4 0.0%
Branches: 0 0 -%

Line Branch Exec Source
1 /**
2 * This file is part of the CernVM File System.
3 */
4
5 #ifndef CVMFS_SWISSKNIFE_GC_H_
6 #define CVMFS_SWISSKNIFE_GC_H_
7
8 #include <string>
9
10 #include "swissknife.h"
11
12 namespace swissknife {
13
14 class CommandGc : public Command {
15 public:
16 ~CommandGc() { }
17 virtual std::string GetName() const { return "gc"; }
18 virtual std::string GetDescription() const {
19 return "Garbage Collect a CernVM-FS repository.";
20 }
21 virtual ParameterList GetParams() const;
22 int Main(const ArgumentList &args);
23 };
24
25 } // namespace swissknife
26
27 #endif // CVMFS_SWISSKNIFE_GC_H_
28