ladybird/Userland/Applications/Help/ManualPageNode.cpp

26 lines
567 B
C++
Raw Normal View History

/*
* Copyright (c) 2019-2020, Sergey Bugaev <bugaevc@serenityos.org>
* Copyright (c) 2022, the SerenityOS developers.
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include "ManualPageNode.h"
#include "ManualSectionNode.h"
2022-04-01 20:58:27 +03:00
ManualNode const* ManualPageNode::parent() const
{
return &m_section;
}
NonnullOwnPtrVector<ManualNode>& ManualPageNode::children() const
{
static NonnullOwnPtrVector<ManualNode> empty_vector;
return empty_vector;
}
String ManualPageNode::path() const
{
2020-10-05 19:05:35 +03:00
return String::formatted("{}/{}.md", m_section.path(), m_page);
}