Last change
on this file since 749 was
286,
checked in by Maciej Komosinski, 10 years ago
|
Updated headers
|
-
Property svn:eol-style set to
native
|
File size:
934 bytes
|
Rev | Line | |
---|
[286] | 1 | // This file is a part of Framsticks SDK. http://www.framsticks.com/ |
---|
| 2 | // Copyright (C) 1999-2015 Maciej Komosinski and Szymon Ulatowski. |
---|
| 3 | // See LICENSE.txt for details. |
---|
[109] | 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.