ISliceFrameSink.h
Go to the documentation of this file.
1 #ifndef WIRECELL_ISLICEFRAMESINK
2 #define WIRECELL_ISLICEFRAMESINK
3 
6 
7 namespace WireCell {
8 
9  class ISliceFrameSink : public ISinkNode<ISliceFrame> {
10  public:
11 
12  typedef std::shared_ptr<ISliceFrameSink> pointer;
13 
14  virtual ~ISliceFrameSink() ;
15 
16  virtual std::string signature() {
17  return typeid(ISliceFrameSink).name();
18  }
19 
20  // supply:
21  // virtual bool operator()(const IFrame::pointer& frame);
22 
23 
24  };
25 
26 }
27 
28 #endif
static QCString name
Definition: declinfo.cpp:673
std::shared_ptr< ISliceFrameSink > pointer
std::string string
Definition: nybbler.cc:12
virtual std::string signature()
Definition: Main.h:22