Last change
on this file since 72 was
66,
checked in by Maciej Komosinski, 14 years ago
|
set 'eol-style' to 'native'
|
-
Property svn:eol-style set to
native
|
File size:
570 bytes
|
Rev | Line | |
---|
[64] | 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. |
---|
[5] | 4 | |
---|
| 5 | #ifndef _SYNTPATAM_H_ |
---|
| 6 | #define _SYNTPATAM_H_ |
---|
| 7 | |
---|
| 8 | #include "param.h" |
---|
| 9 | |
---|
| 10 | class SyntParam: public Param |
---|
| 11 | { |
---|
| 12 | void* obj; |
---|
| 13 | ParamEntry *pe; |
---|
| 14 | SString* autostring; |
---|
| 15 | public: |
---|
| 16 | SyntParam(ParamEntry *pe,SString* autostring=0); |
---|
| 17 | SyntParam(const SyntParam& src); |
---|
| 18 | ~SyntParam(); |
---|
| 19 | void setAutoUpdate(SString* autostr) {autostring=autostr;} |
---|
| 20 | void update(SString *s=0); |
---|
| 21 | void revert(SString *s=0); |
---|
| 22 | }; |
---|
| 23 | |
---|
| 24 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.