GCC Code Coverage Report


Directory: cvmfs/
File: cvmfs/swissknife_notify.h
Date: 2024-04-28 02:33:07
Exec Total Coverage
Lines: 0 3 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_NOTIFY_H_
6 #define CVMFS_SWISSKNIFE_NOTIFY_H_
7
8 #include "swissknife.h"
9
10 #include <string>
11
12 namespace swissknife {
13
14 class CommandNotify : public Command {
15 public:
16 virtual ~CommandNotify();
17
18 virtual std::string GetName() const { return "notify"; }
19 virtual std::string GetDescription() const {
20 return "Publish/subscribe client for the CVMFS notification system";
21 }
22
23 virtual ParameterList GetParams() const;
24
25 virtual int Main(const ArgumentList &args);
26 };
27
28 } // namespace swissknife
29
30 #endif // CVMFS_SWISSKNIFE_NOTIFY_H_
31