Last change
on this file since 215 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:
972 bytes
|
Rev | Line | |
---|
[121] | 1 | // This file is a part of the Framsticks GDK. |
---|
[197] | 2 | // Copyright (C) 1999-2014 Maciej Komosinski and Szymon Ulatowski. See LICENSE.txt for details. |
---|
[109] | 3 | // Refer to http://www.framsticks.com/ for further information. |
---|
| 4 | |
---|
| 5 | #ifndef _PARAMTABOBJ_H_ |
---|
| 6 | #define _PARAMTABOBJ_H_ |
---|
| 7 | |
---|
| 8 | #include "param.h" |
---|
| 9 | |
---|
| 10 | class ParamTab |
---|
| 11 | { |
---|
| 12 | ParamEntry *tab; |
---|
| 13 | int siz; |
---|
| 14 | void init() {siz=0; tab=(ParamEntry*)calloc(sizeof(ParamEntry),1);} |
---|
| 15 | void resize(int s); |
---|
| 16 | int measureTab(const ParamEntry *pe); |
---|
| 17 | |
---|
| 18 | public: |
---|
| 19 | ParamTab(const ParamEntry* pe=0,int maxcount=-1) {init(); if (pe) add(pe,maxcount);} |
---|
| 20 | ParamTab(const ParamTab& src) {init(); add(src);} |
---|
| 21 | ~ParamTab() {clear();} |
---|
| 22 | |
---|
| 23 | int size() const {return siz;} |
---|
| 24 | ParamEntry* getParamTab() const {return tab;} |
---|
| 25 | ParamEntry* operator()() const {return tab;} |
---|
| 26 | |
---|
| 27 | /** @return position of the last added entry */ |
---|
| 28 | int add(const ParamEntry*,int count=1); |
---|
| 29 | int add(const ParamTab& src) {return add(src.getParamTab(), src.size());} |
---|
| 30 | void remove(int i,int count=1); |
---|
| 31 | void clear() {resize(-1);} |
---|
| 32 | }; |
---|
| 33 | |
---|
| 34 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.