source: cpp/gdk/neurofactory.h @ 104

Last change on this file since 104 was 104, checked in by sz, 11 years ago

introducing object de/serialization - see serialtest.cpp
the core GDK classes can be now used in multiple threads (ifdef MULTITHREADED)

  • Property svn:eol-style set to native
File size: 856 bytes
Line 
1// This file is a part of the Framsticks GDK library.
2// Copyright (C) 2002-2011  Szymon Ulatowski.  See LICENSE.txt for details.
3// Refer to http://www.framsticks.com/ for further information.
4
5#ifndef _NEUROFACTORY_H_
6#define _NEUROFACTORY_H_
7
8#include "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.