IBlobSetSink.h
Go to the documentation of this file.
1 #ifndef WIRECELL_IBLOBSETSINK
2 #define WIRECELL_IBLOBSETSINK
3 
6 
7 namespace WireCell {
8 
9  /** A blob set sink is a node that consumes IBlobSet objects.
10  */
11  class IBlobSetSink : public ISinkNode<IBlobSet>
12  {
13  public:
14  virtual ~IBlobSetSink() ;
15 
16  virtual std::string signature() {
17  return typeid(IBlobSetSink).name();
18  }
19 
20  // supply:
21  // virtual bool operator()(const IBlobSet::pointer& bs);
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: IBlobSetSink.h:16
Definition: Main.h:22