1 /*
2  *  cHelpAlias.cc
3  *  Avida
4  *
5  *  Called "help_alias.cc" prior to 12/7/05.
6  *  Copyright 1999-2011 Michigan State University. All rights reserved.
7  *  Copyright 1993-2003 California Institute of Technology.
8  *
9  *
10  *  This file is part of Avida.
11  *
12  *  Avida is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License
13  *  as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
14  *
15  *  Avida is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
16  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
17  *
18  *  You should have received a copy of the GNU Lesser General Public License along with Avida.
19  *  If not, see <http://www.gnu.org/licenses/>.
20  *
21  */
22 
23 #include "cHelpAlias.h"
24 
25 #include "cHelpFullEntry.h"
26 
27 
GetKeyword() const28 const cString & cHelpAlias::GetKeyword() const { return full_entry->GetKeyword(); }
GetDesc() const29 const cString & cHelpAlias::GetDesc() const { return full_entry->GetDesc(); }
GetType() const30 cHelpType * cHelpAlias::GetType() const { return full_entry->GetType(); }
31