mirror of
https://git.savannah.gnu.org/git/gperf.git
synced 2025-12-02 21:19:24 +00:00
Introduce class KeywordExt.
This commit is contained in:
@@ -18,6 +18,7 @@ You should have received a copy of the GNU General Public License
|
||||
along with GNU GPERF; see the file COPYING. If not, write to the Free
|
||||
Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111, USA. */
|
||||
|
||||
#include <stddef.h>
|
||||
#include "keyword.h"
|
||||
|
||||
|
||||
@@ -28,6 +29,15 @@ Keyword::Keyword (const char *s, int s_len, const char *r)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
/* KeywordExt class. */
|
||||
|
||||
KeywordExt::KeywordExt (const char *s, int s_len, const char *r)
|
||||
: Keyword (s, s_len, r), duplicate_link (NULL), final_index (0)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
/* Keyword_Factory class. */
|
||||
|
||||
Keyword_Factory::Keyword_Factory () {}
|
||||
|
||||
Reference in New Issue
Block a user