summaryrefslogtreecommitdiff
path: root/src/network.h
blob: 85d8407d130df96a88d58c4954219cc52e92eaa6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#ifndef NEURAL_NETWORK_H
#define NEURAL_NETWORK_H

#include "neural/node.h"

namespace Neural
{
	template<typename sigtype>
	class Network
	{
	public:
		Network() :
			pRoot( 0 )
		{
		}

		virtual ~Network()
		{
			delete pRoot;
		}



	private:
		Node<sigtype> *pRoot;
	};
};

#endif