source: cpp/frams/neuro/neurofactory.h @ 601

Last change on this file since 601 was 286, checked in by Maciej Komosinski, 9 years ago

Updated headers

  • Property svn:eol-style set to native
File size: 844 bytes
Line 
1// This file is a part of Framsticks SDK.  http://www.framsticks.com/
2// Copyright (C) 1999-2015  Maciej Komosinski and Szymon Ulatowski.
3// See LICENSE.txt for details.
4
5#ifndef _NEUROFACTORY_H_
6#define _NEUROFACTORY_H_
7
8#include <frams/model/modelparts.h>
9#include <map>
10
11class NeuroImpl;
12
13class NeuroFactory
14{
15std::map<NeuroClass*,NeuroImpl*> impl;
16public:
17NeuroImpl* setImplementation(NeuroClass *nc,NeuroImpl *ni,bool deleteold=1);
18NeuroImpl* setImplementation(const SString& classname,NeuroImpl *ni,bool deleteold=1);
19NeuroImpl* getImplementation(NeuroClass *nc);
20class NeuroImpl* createNeuroImpl(Neuro *n)
21        {NeuroClass *nc=n->getClass(); if (!nc) return 0; return createNeuroImpl(nc);}
22class NeuroImpl* createNeuroImpl(NeuroClass *nc);
23
24void setStandardImplementation();
25void freeImplementation();
26void removeUnimplemented();
27};
28
29#endif
Note: See TracBrowser for help on using the repository browser.