Skip to content
Snippets Groups Projects
StreamparserLS.hh 244 B
Newer Older
#ifndef STREAMPARSERLS_H
#define STREAMPARSERLS_H

#include <iostream>
using namespace std;

class StreamParserLS
{
  public:
    virtual void ParseStream(istream &theistream) = 0;
    virtual ~StreamParserLS(){};
};
#endif // STREAMPARSERLS_H