47 lines
942 B
C++
47 lines
942 B
C++
#ifndef SUBSTRING_OCCURENCE_HDR
|
|
#define SUBSTRING_OCCURENCE_HDR
|
|
|
|
#include "concordia/common/config.hpp"
|
|
#include <string>
|
|
|
|
/*!
|
|
Class representing occurence of a searched substring.
|
|
|
|
*/
|
|
|
|
using namespace std;
|
|
|
|
class SubstringOccurence {
|
|
public:
|
|
explicit SubstringOccurence(const SUFFIX_MARKER_TYPE & marker);
|
|
|
|
SubstringOccurence(const SUFFIX_MARKER_TYPE & id,
|
|
const SUFFIX_MARKER_TYPE & offset,
|
|
const SUFFIX_MARKER_TYPE & exampleLength);
|
|
/*! Destructor.
|
|
*/
|
|
virtual ~SubstringOccurence();
|
|
|
|
SUFFIX_MARKER_TYPE getId() const {
|
|
return _id;
|
|
}
|
|
|
|
SUFFIX_MARKER_TYPE getOffset() const {
|
|
return _offset;
|
|
}
|
|
|
|
SUFFIX_MARKER_TYPE getExampleLength() const {
|
|
return _exampleLength;
|
|
}
|
|
|
|
private:
|
|
SUFFIX_MARKER_TYPE _id;
|
|
|
|
SUFFIX_MARKER_TYPE _offset;
|
|
|
|
// the example
|
|
SUFFIX_MARKER_TYPE _exampleLength;
|
|
};
|
|
|
|
#endif
|