IClusterFramer.h
Go to the documentation of this file.
1 /* A cluster framer produces a frame from a cluster.
2  */
3 
4 #ifndef WIRECELL_ICLUSTERFRAMER
5 #define WIRECELL_ICLUSTERFRAMER
6 
8 #include "WireCellIface/IFrame.h"
10 
11 namespace WireCell {
12  class IClusterFramer : public IFunctionNode<ICluster,IFrame> {
13  public:
14  virtual ~IClusterFramer();
15 
16  virtual std::string signature() {
17  return typeid(IClusterFramer).name();
18  }
19 
20  // supply:
21  // virtual bool operator()(const input_pointer& in, output_pointer& out);
22 
23  };
24 
25 }
26 
27 #endif
static QCString name
Definition: declinfo.cpp:673
std::string string
Definition: nybbler.cc:12
virtual std::string signature()
Set the signature for all subclasses.
Definition: Main.h:22