1#ifndef __JBXL_CPP_TOOLSPP_H_
2#define __JBXL_CPP_TOOLSPP_H_
23#define JBXL_ARRAYPARAM_MAX_NUM 256
30template <
typename T=
double>
class ArrayParam
99 for (
int i=0; i<_size; i++) {
100 if (_value[i]!=NULL) ::free(_value[i]);
121 if (n<0 || n>=_size)
return (T)0;
140 if (n>=_size || n<0) {
141 PRINT_MESG(
"WARNING: ArrayParam<T>::set_value: size missmatch (%d !< %d)\n", n, _size);
173 _size = a.get_size();
174 for (
int i=0; i<_size; i++) _value[i] = a.get_value(i);
198 for (
int i=0; i<num; i++) {
268 T* pp = (T*)lt->ldat.ptr;
Buffer encode_base64_Buffer(Buffer buf)
バイナリデータ buf.bufの buf.vldszバイトを Base64にエンコード する
Buffer decode_base64_Buffer(Buffer str)
strのバッファを Base64からデコードする
bool set_value(int n, T val)
virtual ~ArrayParam(void)
void dup(ArrayParam< T > a, bool del=true)
unsigned char * encode(unsigned char *str, int sz)
unsigned char * decode(unsigned char *str, int *sz)
Buffer decode(Buffer buf)
Buffer encode(Buffer buf)
void del_tList_object(tList **lp)
void freeArrayParams(ArrayParam< T > *p, int num)
tList * add_tList_object(tList *lt, T obj)
void DisPatcher(int sno=0,...)
tList * del_tList(tList **pp)
指定したリストノード以降のリストを削除.
tList * add_tList_node_bystr(tList *pp, int id, int lv, const char *key, const char *val, void *ptr, int sz)
文字列データからリスト用ノードを生成し(new),それをリストに追加.