source: cpp/gdk/syntparam.h @ 64

Last change on this file since 64 was 64, checked in by Maciej Komosinski, 13 years ago

a lot of minor fixes

File size: 570 bytes
Line 
1// This file is a part of the Framsticks GDK library.
2// Copyright (C) 2002-2011  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
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.