Notification::Notification(const Notification& other)
{
CALL_MEMBER_FN(&text, Set)(other.text.Get(), 0);
CALL_MEMBER_FN(&status, Set)(other.status.Get(), 0);
CALL_MEMBER_FN(&sound, Set)(other.sound.c_str());
objectives.CopyFrom(&other.objectives);
type = other.type;
quest = other.quest;
word = other.word;
time = other.time;
}
const Notification&,这个&既不是取址也不是引用,不懂。