--- deliantra/server/include/cfperl.h 2007/02/15 21:07:49 1.56 +++ deliantra/server/include/cfperl.h 2007/02/16 19:43:41 1.57 @@ -359,19 +359,20 @@ void get (attachable *obj, int oid); // parse next line - void next_kv (); - //TODO: remove + void next (); + // skip the current key-value (usually fetch next line, for + // multiline-fields, skips untilt he corresponding end-kw + void skip (); + + //TODO: remove, deprecated keyword get_kv () { - next_kv (); + next (); return kw; } - // skip the current key-value (usually fetch next line, for - // multiline-fields, skips untilt he corresponding end-kw - void skip_kv (); - const char *get_str () { return value; } // may be 0 + char *get_str () { return value; } // may be 0 void get (shstr &sh) const; void get_ornull (shstr &sh) const { sh = value; }