xref: /webtrees/app/Elements/GedcomElement.php (revision 90288370403060744b506537895bce97ce70617c)
1*90288370SGreg Roach<?php
2*90288370SGreg Roach
3*90288370SGreg Roach/**
4*90288370SGreg Roach * webtrees: online genealogy
5*90288370SGreg Roach * Copyright (C) 2021 webtrees development team
6*90288370SGreg Roach * This program is free software: you can redistribute it and/or modify
7*90288370SGreg Roach * it under the terms of the GNU General Public License as published by
8*90288370SGreg Roach * the Free Software Foundation, either version 3 of the License, or
9*90288370SGreg Roach * (at your option) any later version.
10*90288370SGreg Roach * This program is distributed in the hope that it will be useful,
11*90288370SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
12*90288370SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13*90288370SGreg Roach * GNU General Public License for more details.
14*90288370SGreg Roach * You should have received a copy of the GNU General Public License
15*90288370SGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>.
16*90288370SGreg Roach */
17*90288370SGreg Roach
18*90288370SGreg Roachdeclare(strict_types=1);
19*90288370SGreg Roach
20*90288370SGreg Roachnamespace Fisharebest\Webtrees\Elements;
21*90288370SGreg Roach
22*90288370SGreg Roach/**
23*90288370SGreg Roach * HEAD:GEDC is an empty element with children; VERS and FORM.
24*90288370SGreg Roach */
25*90288370SGreg Roachclass GedcomElement extends EmptyElement
26*90288370SGreg Roach{
27*90288370SGreg Roach}
28