summaryrefslogtreecommitdiff
path: root/src/slope.h
blob: acdbb418d4c519ab40d7ca042e7a2687c1963d03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef NEURAL_SLOPE_H
#define NEURAL_SLOPE_H

namespace Neural
{
	template<typename sigtype>
	class Slope
	{
	public:
		Slope()
		{
		}

		virtual ~Slope()
		{
		}

		virtual sigtype operator()( sigtype sInput )=0;
	};
};

#endif