Last change
on this file since 57 was
5,
checked in by sz, 16 years ago
|
added the GDK (Genotype Development Kit)
|
File size:
801 bytes
|
Rev | Line | |
---|
[5] | 1 | // This file is a part of Framsticks GDK library. |
---|
| 2 | // Copyright (C) 2002-2006 Szymon Ulatowski. See LICENSE.txt for details. |
---|
| 3 | // Refer to http://www.frams.alife.pl/ for further information. |
---|
| 4 | |
---|
| 5 | #ifndef _NILIBRARY_H_ |
---|
| 6 | #define _NILIBRARY_H_ |
---|
| 7 | |
---|
| 8 | #include "advlist.h" |
---|
| 9 | #include "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 | int getClassCount() {return classes.size();} |
---|
| 25 | void removeClass(int i); |
---|
| 26 | void clear(); |
---|
| 27 | NeuroClass *addClass(NeuroClass *cls,bool replace=1); |
---|
| 28 | }; |
---|
| 29 | |
---|
| 30 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.