IDepoSink.h
Go to the documentation of this file.
1 #ifndef WIRECELL_IDEPOSINK
2 #define WIRECELL_IDEPOSINK
3 
5 #include "WireCellIface/IDepo.h"
6 
7 namespace WireCell {
8 
9  /** A depo sink is a node that consumes IDepo objects.
10  */
11  class IDepoSink : public ISinkNode<IDepo>
12  {
13  public:
14  virtual ~IDepoSink() ;
15 
16  virtual std::string signature() {
17  return typeid(IDepoSink).name();
18  }
19 
20  // supply:
21  // virtual bool operator()(const IDepo::pointer& depo);
22 
23  };
24 
25 
26 }
27 
28 #endif
static QCString name
Definition: declinfo.cpp:673
std::string string
Definition: nybbler.cc:12
virtual std::string signature()
Definition: IDepoSink.h:16
Definition: Main.h:22