1
0
mirror of https://git.savannah.gnu.org/git/gperf.git synced 2025-12-02 13:09:22 +00:00

Rework the Read_Line class.

This commit is contained in:
Bruno Haible
2002-12-11 18:50:41 +00:00
parent c3412a80e7
commit ebc7fe6188
7 changed files with 23 additions and 8 deletions

View File

@@ -29,8 +29,8 @@
#include <limits.h> /* defines UCHAR_MAX etc. */
#include "options.h"
Input::Input (Keyword_Factory *keyword_factory)
: _factory (keyword_factory)
Input::Input (FILE *stream, Keyword_Factory *keyword_factory)
: Read_Line (stream), _factory (keyword_factory)
{
}