|
class GObject {
public:
char *Name();
bool Name(char *s);
};
|
char *Name();Returns a pointer to the objects name;
bool Name(char *s);Sets the objects name. The string is copied and stored internally. The return value is non-zero when the function succeeds.