21 lines
274 B
C++
21 lines
274 B
C++
#ifndef __LineParser_h__
|
|
# define __LineParser_h__
|
|
|
|
#include "StreamReader.h"
|
|
#include "Parser.h"
|
|
|
|
namespace coreutils {
|
|
|
|
class LineParser : public Parser {
|
|
|
|
public:
|
|
LineParser(StreamReader &reader);
|
|
|
|
virtual int parse();
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|