1 /*
2 * Copyright (c) 2004-2019 Stephen Williams (steve@icarus.com)
3 *
4 * This source code is free software; you can redistribute it
5 * and/or modify it in source code form under the terms of the GNU
6 * General Public License as published by the Free Software
7 * Foundation; either version 2 of the License, or (at your option)
8 * any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 */
19
20 # include "config.h"
21
22 # include "PEvent.h"
23
PEvent(perm_string n)24 PEvent::PEvent(perm_string n)
25 : name_(n)
26 {
27 }
28
~PEvent()29 PEvent::~PEvent()
30 {
31 }
32
name() const33 perm_string PEvent::name() const
34 {
35 return name_;
36 }
37
symbol_type() const38 PNamedItem::SymbolType PEvent::symbol_type() const
39 {
40 return EVENT;
41 }
42