| 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 <string> |
| 9 |
|
|
|
| 10 |
|
|
#include "swissknife.h" |
| 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 |
|
|
|