#include <module.h>
Public Attributes | |
Class2 * | two |
Related Functions | |
(Note that these are not member functions.) | |
void | class1_func1 (Class1 *obj) |
Definition at line 10 of file module.h.
void class1_func1 | ( | Class1 * | obj | ) | [related] |
Func1 of Class1.
Definition at line 12 of file module.c.
References class2_func1(), Class2::class2_func2(), and two.
00013 { 00014 class2_func1(obj->two); 00015 class2_func2(obj->two); 00016 }