#include <Hook.h>
Definition at line 16 of file Hook.h.
◆ Hook() [1/2]
◆ Hook() [2/2]
Hook::Hook |
( |
int * |
ids, |
|
|
int |
num |
|
) |
| |
Definition at line 25 of file Hook.cpp.
40 this->
objects=xNew<Object*>(in_num);
41 this->
ids=xNew<int>(in_num);
42 this->
offsets=xNew<int>(in_num);
45 for(
int i=0;i<this->
num;i++){
46 this->
ids[i] = in_ids[i];
◆ ~Hook()
Definition at line 53 of file Hook.cpp.
54 xDelete<Object*>(this->
objects);
55 xDelete<int>(this->
ids);
◆ copy()
Definition at line 61 of file Hook.cpp.
69 for(
int i=0;i<output->
num;i++){
◆ DeepEcho()
void Hook::DeepEcho |
( |
void |
| ) |
|
Definition at line 77 of file Hook.cpp.
92 for (i=0;i<this->
num;i++){
95 else _printf_(
" no object hooked yet (not configured)\n");
◆ Echo()
◆ Marshall()
void Hook::Marshall |
( |
char ** |
pmarshalled_data, |
|
|
int * |
pmarshalled_data_size, |
|
|
int |
marshall_direction |
|
) |
| |
◆ configure()
void Hook::configure |
( |
DataSet * |
dataset | ) |
|
Definition at line 145 of file Hook.cpp.
154 for(i=0;i<this->
num;i++){
157 if (this->
ids[i]==-1)
continue;
161 if(this->
objects[i]->Id()==this->
ids[i])
continue;
170 if (object->
Id()==this->
ids[i]){
182 if (this->
objects[i]->Id()!=this->
ids[i])
_error_(
"wrong id: " << this->
objects[i]->Id() <<
" vs " << this->
ids[i] <<
" in resolved pointer!");
◆ deliverp()
Object ** Hook::deliverp |
( |
void |
| ) |
|
◆ delivers()
Object * Hook::delivers |
( |
void |
| ) |
|
Definition at line 191 of file Hook.cpp.
194 if (this->
num!=1)
_error_(
"trying to deliver a single hook object when hook holds " << this->
num <<
" objects" <<
"\n");
197 if (this->
objects==NULL)
_error_(
"hook is not pointing to any object, objects pointer is NULL");
◆ GetNum()
int Hook::GetNum |
( |
void |
| ) |
|
◆ Ids()
◆ reset()
void Hook::reset |
( |
void |
| ) |
|
Definition at line 211 of file Hook.cpp.
217 for(i=0;i<this->
num;i++){
◆ Spawn()
Hook * Hook::Spawn |
( |
int * |
indices, |
|
|
int |
numindices |
|
) |
| |
Definition at line 222 of file Hook.cpp.
237 if(numindices>this->
num)
_error_(
"Cannot spawn hook with " << numindices <<
" objects from a Hook of " << this->
num <<
" objects");
240 output->
num=numindices;
241 if(output->
num<1)
_error_(
"Trying to spawn an empty ElementProperties!");
244 output->
ids = xNew<int>(output->
num);
247 for(
int i=0;i<output->
num;i++){
249 output->
ids[i] = this->
ids[indices[i]];
◆ ids
◆ num
◆ objects
◆ offsets
The documentation for this class was generated from the following files: