1
// =================================
2
// Copyright (c) 2020 Seppo Laakko
3
// Distributed under the MIT license
4
// =================================
5
6
#include <gendoc/gendoc/File.hpp>
7
8
namespace
gendoc
{
9
10
File
::
File
(
const
std
::
u32string
&
name_
,
const
std
::
string
&
path_
)
:
name
(
name_
)
,
path
(
path_
)
,
included
(
true
)
11
{
12
}
13
14
}
// namespace gendoc