source: cpp/frams/neuro/geneticneuroparam.cpp @ 348

Last change on this file since 348 was 286, checked in by Maciej Komosinski, 9 years ago

Updated headers

  • Property svn:eol-style set to native
File size: 600 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#include "geneticneuroparam.h"
6#include <frams/neuro/neurolibrary.h>
7
8GeneticNeuroParam::GeneticNeuroParam(const char* groupname,const char* myname,
9                                   const char* prefix,const char* typ)
10        :NeuroLibParam(groupname,myname,prefix),types(typ)
11{}
12
13paInt GeneticNeuroParam::getInt(int i)
14{return Neuro::getClass(i)->genactive;}
15
16int GeneticNeuroParam::setInt(int i,paInt v)
17{Neuro::getClass(i)->genactive=v;return PSET_CHANGED;}
18
Note: See TracBrowser for help on using the repository browser.