- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
class r{
r(const r&);
r& operator=(const r&);
public:
r(){}
template<class t>
r& operator,(t *v){
return this->operator<<(*v);
}
template<class t>
r& operator<<(t &o){
crash_if_fail(dynamic_cast<const void*>(&o));
int l = 0;
int n = 0, n_ = sizeof(o) / sizeof(void*);
while (n < n_){
void **a = *((void***)&o + n++);
if (IsBadReadPtr(a, sizeof(void*)) || is_stack(a)){
continue;
}
int c = 0;
void *d = a[c];
while (is_code_segment__(d)){
print_info(&l, o, n, d, c, a);
d = a[++c];
}
}
return *this;
}
template<class t>
void print_info(int *l, const t &o, int n, void *d, int c, void **a){
if (!*l){
puts("///////////////////////////////////////////////////");
printf("object address %p\n", &o);
*l = 1;
}
if (!c){
puts("-=-=-=-=-=-=-=-=-=-");
printf("%15.1s%p:__vfptr %p\n", "+", ((char*)((void***)&o + n - 1)) - (char*)&o, a);
}
printf("%32.p\n", d);
}
};
guest 28.04.2011 07:34 # +2
guest 28.04.2011 08:44 # +1
absolut 28.04.2011 09:43 # 0
TarasB 28.04.2011 11:56 # 0
> operator,
ReL 28.04.2011 14:21 # −2
Govnocoder#0xFF 28.04.2011 16:36 # −2
absolut 28.04.2011 16:40 # +5
bugmenot 28.04.2011 17:55 # +4
Govnocoder#0xFF 28.04.2011 18:00 # +4
SmackMyBitchUp 30.04.2011 14:45 # 0
absolut 28.04.2011 19:34 # +5
Киндер-Пасха продолжается
ctm 28.04.2011 14:07 # +1
absolut 28.04.2011 14:22 # 0
TarasB 28.04.2011 14:29 # 0
В нике ctm букв меньше.
absolut 28.04.2011 14:32 # 0
Govnocoder#0xFF 28.04.2011 16:37 # −2
Lure Of Chaos 28.04.2011 16:42 # +1
Lure Of Chaos 28.04.2011 16:42 # +1
guest 28.04.2011 17:14 # +5
Govnocoder#0xFF 28.04.2011 17:16 # 0
Lure Of Chaos 28.04.2011 17:51 # 0
********
login
Govnocoder#0xFF 28.04.2011 18:49 # 0
Lure Of Chaos 28.04.2011 18:51 # 0
absolut 28.04.2011 19:35 # +2
Lure Of Chaos 28.04.2011 19:42 # 0
absolut 28.04.2011 19:47 # 0
absolut 28.04.2011 19:57 # 0
absolut 28.04.2011 19:36 # −1
SmackMyBitchUp 28.04.2011 19:07 # 0
absolut 28.04.2011 19:37 # 0
SmackMyBitchUp 29.04.2011 05:16 # 0
absolut 29.04.2011 07:29 # +1
SmackMyBitchUp 29.04.2011 10:57 # 0
Просто чтобы иметь в виду.
absolut 29.04.2011 11:05 # 0
SmackMyBitchUp 29.04.2011 19:36 # 0