Last change
on this file since 201 was
197,
checked in by Maciej Komosinski, 11 years ago
|
GDK used by developers since 1999, distributed on the web since 2002
|
-
Property svn:eol-style set to
native
|
File size:
1.2 KB
|
Line | |
---|
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 | #ifndef _SYNTPATAM_H_ |
---|
6 | #define _SYNTPATAM_H_ |
---|
7 | |
---|
8 | #include "param.h" |
---|
9 | |
---|
10 | /** Creates param + matching temporary object (ParamObject) |
---|
11 | using the supplied ParamEntry'ies as a template. |
---|
12 | This is mainly used for manipulating specialized neuron properties |
---|
13 | (Neuro.d field) in absence of live neuron implementations |
---|
14 | (these are only available in live creatures, but not when operating |
---|
15 | on Models and Genotypes). |
---|
16 | |
---|
17 | See also: gdktest.cpp |
---|
18 | */ |
---|
19 | class SyntParam: public Param |
---|
20 | { |
---|
21 | void* obj,*def_obj; |
---|
22 | ParamEntry *pe; |
---|
23 | SString* autostring; |
---|
24 | public: |
---|
25 | /** @param handle_defaults_when_saving creates a second object holding the default values so Param::save2 can use it for omitting defaults. can be disabled for compatiblity with previous behavior (defaults were ignored in SyntParam) |
---|
26 | */ |
---|
27 | SyntParam(ParamEntry *pe,SString* autostring=0,bool handle_defaults_when_saving=true); |
---|
28 | SyntParam(const SyntParam& src); |
---|
29 | ~SyntParam(); |
---|
30 | void setAutoUpdate(SString* autostr) {autostring=autostr;} |
---|
31 | void update(SString *s=0); |
---|
32 | void revert(SString *s=0); |
---|
33 | }; |
---|
34 | |
---|
35 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.