Changeset 247 for cpp/frams/neuro
- Timestamp:
- 11/07/14 17:51:01 (10 years ago)
- Location:
- cpp/frams/neuro
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/neuro/geneticneuroparam.cpp
r197 r247 11 11 {} 12 12 13 longGeneticNeuroParam::getInt(int i)13 paInt GeneticNeuroParam::getInt(int i) 14 14 {return Neuro::getClass(i)->genactive;} 15 15 16 int GeneticNeuroParam::setInt(int i, longv)16 int GeneticNeuroParam::setInt(int i,paInt v) 17 17 {Neuro::getClass(i)->genactive=v;return PSET_CHANGED;} 18 18 -
cpp/frams/neuro/geneticneuroparam.h
r197 r247 15 15 GeneticNeuroParam(const char* groupname,const char* myname, const char* prefix,const char* typ=0); 16 16 17 longgetInt(int i);18 int setInt(int i, longv);17 paInt getInt(int i); 18 int setInt(int i,paInt v); 19 19 const char *type(int i) {return types?types:NeuroLibParam::type(i);} 20 20 }; -
cpp/frams/neuro/neurocls-f0-GDK-factory.h
r197 r247 1 // This file is a part of the Framsticks GDK.2 // Copyright (C) 1999-2014 Maciej Komosinski and Szymon Ulatowski. See LICENSE.txt for details.3 // Refer to http://www.framsticks.com/ for further information.4 5 1 6 2 // do not edit - generated automatically from "f0.def" -
cpp/frams/neuro/neurocls-f0-GDK-library.h
r197 r247 1 // This file is a part of the Framsticks GDK.2 // Copyright (C) 1999-2014 Maciej Komosinski and Szymon Ulatowski. See LICENSE.txt for details.3 // Refer to http://www.framsticks.com/ for further information.4 5 1 6 2 // do not edit - generated automatically from "f0.def" -
cpp/frams/neuro/neuroimpl.h
r197 r247 108 108 109 109 public: 110 longintParameter;110 paInt intParameter; 111 111 double fpParameter; 112 112 SString txtParameter; -
cpp/frams/neuro/neurolibparam.cpp
r197 r247 22 22 } 23 23 24 void NeuroLibParam::neuroclassAdded(void* data, longi)24 void NeuroLibParam::neuroclassAdded(void* data,intptr_t i) 25 25 {onadd.action(i);} 26 void NeuroLibParam::neuroclassRemoved(void* data, longi)26 void NeuroLibParam::neuroclassRemoved(void* data,intptr_t i) 27 27 {ondelete.action(i);} 28 28
Note: See TracChangeset
for help on using the changeset viewer.