#ifndef NEURAL_SLOPE_H #define NEURAL_SLOPE_H namespace Neural { template class Slope { public: Slope() { } virtual ~Slope() { } virtual sigtype operator()( sigtype sInput )=0; }; }; #endif