13 lines
332 B
C++
13 lines
332 B
C++
|
#include "concordia/substring_occurence.hpp"
|
||
|
|
||
|
|
||
|
SubstringOccurence::SubstringOccurence(const SUFFIX_MARKER_TYPE & id,
|
||
|
const int & offset):
|
||
|
_id(id),
|
||
|
_offset(offset) {
|
||
|
}
|
||
|
|
||
|
SubstringOccurence::~SubstringOccurence() {
|
||
|
}
|
||
|
|