source: cpp/frams/neuro/neurolibrary.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: 842 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 _NILIBRARY_H_
6#define _NILIBRARY_H_
7
8#include <frams/util/advlist.h>
9#include <frams/param/param.h>
10
11class NeuroClass;
12
13class NeuroLibrary
14{
15  public:
16static NeuroLibrary staticlibrary;
17NeuroLibrary();
18~NeuroLibrary();
19AdvList classes;
20NeuroClass* findClass(const SString& classname, bool activeonly=1);
21void addStandardClasses();
22int findClassIndex(const SString& classname, bool activeonly=1);
23NeuroClass* getClass(int classindex) {return (NeuroClass*)classes(classindex);}
24SString getClassName(int classindex);
25int getClassCount() {return classes.size();}
26void removeClass(int i);
27void clear();
28NeuroClass *addClass(NeuroClass *cls,bool replace=1);
29};
30
31#endif
Note: See TracBrowser for help on using the repository browser.