xref: /webtrees/app/Census/CensusColumnSexMZ.php (revision e873f434551745f888937263ff89e80db3b0f785)
1c2a8c8bfSGreg Roach<?php
23976b470SGreg Roach
3c2a8c8bfSGreg Roach/**
4c2a8c8bfSGreg Roach * webtrees: online genealogy
5d11be702SGreg Roach * Copyright (C) 2023 webtrees development team
6c2a8c8bfSGreg Roach * This program is free software: you can redistribute it and/or modify
7c2a8c8bfSGreg Roach * it under the terms of the GNU General Public License as published by
8c2a8c8bfSGreg Roach * the Free Software Foundation, either version 3 of the License, or
9c2a8c8bfSGreg Roach * (at your option) any later version.
10c2a8c8bfSGreg Roach * This program is distributed in the hope that it will be useful,
11c2a8c8bfSGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
12c2a8c8bfSGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13c2a8c8bfSGreg Roach * GNU General Public License for more details.
14c2a8c8bfSGreg Roach * You should have received a copy of the GNU General Public License
1589f7189bSGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>.
16c2a8c8bfSGreg Roach */
17fcfa147eSGreg Roach
18e7f56f2aSGreg Roachdeclare(strict_types=1);
1915d603e7SGreg Roach
20c2a8c8bfSGreg Roachnamespace Fisharebest\Webtrees\Census;
21c2a8c8bfSGreg Roach
22c2a8c8bfSGreg Roach/**
23c2a8c8bfSGreg Roach * The individual's sex.
24c2a8c8bfSGreg Roach */
25c1010edaSGreg Roachclass CensusColumnSexMZ extends CensusColumnSexMF
26c1010edaSGreg Roach{
27*e873f434SGreg Roach    protected const string FEMALE = 'Ž';
28c2a8c8bfSGreg Roach}
29