Last change
on this file since 200 was
197,
checked in by Maciej Komosinski, 11 years ago
|
GDK used by developers since 1999, distributed on the web since 2002
|
-
Property svn:eol-style set to
native
|
File size:
880 bytes
|
Rev | Line | |
---|
[121] | 1 | // This file is a part of the Framsticks GDK. |
---|
[197] | 2 | // Copyright (C) 1999-2014 Maciej Komosinski and Szymon Ulatowski. See LICENSE.txt for details. |
---|
[109] | 3 | // Refer to http://www.framsticks.com/ for further information. |
---|
| 4 | |
---|
| 5 | #ifndef _NILIBRARY_H_ |
---|
| 6 | #define _NILIBRARY_H_ |
---|
| 7 | |
---|
| 8 | #include <frams/util/advlist.h> |
---|
| 9 | #include <frams/param/param.h> |
---|
| 10 | |
---|
| 11 | class NeuroClass; |
---|
| 12 | |
---|
| 13 | class NeuroLibrary |
---|
| 14 | { |
---|
| 15 | public: |
---|
| 16 | static NeuroLibrary staticlibrary; |
---|
| 17 | NeuroLibrary(); |
---|
| 18 | ~NeuroLibrary(); |
---|
| 19 | AdvList classes; |
---|
| 20 | NeuroClass* findClass(const SString& classname, bool activeonly=1); |
---|
| 21 | void addStandardClasses(); |
---|
| 22 | int findClassIndex(const SString& classname, bool activeonly=1); |
---|
| 23 | NeuroClass* getClass(int classindex) {return (NeuroClass*)classes(classindex);} |
---|
| 24 | SString getClassName(int classindex); |
---|
| 25 | int getClassCount() {return classes.size();} |
---|
| 26 | void removeClass(int i); |
---|
| 27 | void clear(); |
---|
| 28 | NeuroClass *addClass(NeuroClass *cls,bool replace=1); |
---|
| 29 | }; |
---|
| 30 | |
---|
| 31 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.