Last change
on this file since 567 was
286,
checked in by Maciej Komosinski, 10 years ago
|
Updated headers
|
-
Property svn:eol-style set to
native
|
File size:
600 bytes
|
Rev | Line | |
---|
[286] | 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. |
---|
[138] | 4 | |
---|
| 5 | #include "geneticneuroparam.h" |
---|
| 6 | #include <frams/neuro/neurolibrary.h> |
---|
| 7 | |
---|
| 8 | GeneticNeuroParam::GeneticNeuroParam(const char* groupname,const char* myname, |
---|
| 9 | const char* prefix,const char* typ) |
---|
| 10 | :NeuroLibParam(groupname,myname,prefix),types(typ) |
---|
| 11 | {} |
---|
| 12 | |
---|
[247] | 13 | paInt GeneticNeuroParam::getInt(int i) |
---|
[138] | 14 | {return Neuro::getClass(i)->genactive;} |
---|
| 15 | |
---|
[247] | 16 | int GeneticNeuroParam::setInt(int i,paInt v) |
---|
[138] | 17 | {Neuro::getClass(i)->genactive=v;return PSET_CHANGED;} |
---|
| 18 | |
---|
Note: See
TracBrowser
for help on using the repository browser.