PetaVision  Alpha
RescaleConn.hpp
1 /*
2  * RescaleConn.hpp
3  *
4  * Created on: Apr 15, 2016
5  * Author: pschultz
6  */
7 
8 #ifndef RESCALECONN_HPP_
9 #define RESCALECONN_HPP_
10 
11 #include "IdentConn.hpp"
12 #include <assert.h>
13 #include <string.h>
14 
15 namespace PV {
16 
17 class RescaleConn : public IdentConn {
18  public:
19  RescaleConn(const char *name, HyPerCol *hc);
20 
21  protected:
22  RescaleConn();
23  int initialize(const char *name, HyPerCol *hc);
24 
25  virtual BaseDelivery *createDeliveryObject() override;
26 }; // class RescaleConn
27 
28 } // end of block for namespace PV
29 
30 #endif /* RESCALECONN_HPP_ */