log_target_->pt_->dump();

what is the meaning of this code?
log_target_->pt_->dump();
Last edited on
It dereferences log_target_ to get an object.
Then it dereferences the pt_ pointer of that object to get another object.
Then it calls the dump() method of that other object.

Without seeing the rest of the code, I can't tell you what the code accomplishes.
Topic archived. No new replies allowed.