IPointFieldSink.h
Go to the documentation of this file.
1 #ifndef WIRECELL_IPOINTFIELDSINK
2 #define WIRECELL_IPOINTFIELDSINK
3 
5 #include "WireCellUtil/Point.h"
6 
7 
8 namespace WireCell {
9 
10  /** Base class for a sink of cells. */
11  class IPointFieldSink : public ISinkNode< PointVector >
12  {
13  public:
14  virtual ~IPointFieldSink() ;
15 
16  virtual std::string signature() {
17  return typeid(IPointFieldSink).name();
18  }
19  /// supply:
20  /// virtual bool operator()(const std::shared_ptr<PointVector>& field);
21 
22  };
23 
24 }
25 
26 
27 #endif
28 
static QCString name
Definition: declinfo.cpp:673
std::string string
Definition: nybbler.cc:12
Definition: Main.h:22
virtual std::string signature()