source: cpp/frams/neuro/geneticneuroparam.h @ 197

Last change on this file since 197 was 197, checked in by Maciej Komosinski, 10 years ago

GDK used by developers since 1999, distributed on the web since 2002

  • Property svn:eol-style set to native
File size: 614 bytes
RevLine 
[138]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.
[138]3// Refer to http://www.framsticks.com/ for further information.
4
5#ifndef _GENETICNEUROPARAM_H_
6#define _GENETICNEUROPARAM_H_
7
8#include "neurolibparam.h"
9
10class GeneticNeuroParam: public NeuroLibParam
11{
12  protected:
13const char* types;
14  public:
15GeneticNeuroParam(const char* groupname,const char* myname, const char* prefix,const char* typ=0);
16
17long getInt(int i);
18int setInt(int i,long v);
19const char *type(int i) {return types?types:NeuroLibParam::type(i);}
20};
21
22#endif
Note: See TracBrowser for help on using the repository browser.