source: cpp/gdk/syntparam.h @ 5

Last change on this file since 5 was 5, checked in by sz, 15 years ago

added the GDK (Genotype Development Kit)

File size: 566 bytes
Line 
1// This file is a part of Framsticks GDK library.
2// Copyright (C) 2002-2006  Szymon Ulatowski.  See LICENSE.txt for details.
3// Refer to http://www.frams.alife.pl/ for further information.
4
5#ifndef _SYNTPATAM_H_
6#define _SYNTPATAM_H_
7
8#include "param.h"
9
10class SyntParam: public Param
11{
12void* obj;
13ParamEntry *pe;
14SString* autostring;
15  public:
16SyntParam(ParamEntry *pe,SString* autostring=0);
17SyntParam(const SyntParam& src);
18~SyntParam();
19void setAutoUpdate(SString* autostr) {autostring=autostr;}
20void update(SString *s=0);
21void revert(SString *s=0);
22};
23
24#endif
Note: See TracBrowser for help on using the repository browser.