CernVM-FS  2.12.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
swissknife_notify.h
Go to the documentation of this file.
1 
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_
virtual std::string GetName() const
std::vector< Parameter > ParameterList
Definition: swissknife.h:71
virtual std::string GetDescription() const
virtual int Main(const ArgumentList &args)
std::map< char, SharedPtr< std::string > > ArgumentList
Definition: swissknife.h:72
virtual ParameterList GetParams() const