PetaVision  Alpha
InitIdentWeights.hpp
1 /*
2  * InitIdentWeights.hpp
3  *
4  * Created on: Aug 14, 2011
5  * Author: kpeterson
6  */
7 
8 #ifndef INITIDENTWEIGHTS_HPP_
9 #define INITIDENTWEIGHTS_HPP_
10 
11 #include "InitOneToOneWeights.hpp"
12 
13 namespace PV {
14 
16  protected:
17  virtual void ioParam_weightInit(enum ParamsIOFlag ioFlag) override;
18 
19  public:
20  InitIdentWeights(char const *name, HyPerCol *hc);
21  virtual ~InitIdentWeights();
22 
23  protected:
25  int initialize(char const *name, HyPerCol *hc);
26 }; // class InitIdentWeights
27 
28 } /* namespace PV */
29 #endif /* INITIDENTWEIGHTS_HPP_ */