Newer
Older
jsclose
committed
//
// Created by Jake Close on 3/13/18.
//
#pragma once
//#include "Post.h"
#include <fcntl.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <sys/mman.h>
#include <sys/stat.h>
#include <sys/types.h>
const Location MAX_Location = std::numeric_limits<unsigned>::max();
jsclose
committed
class ISR
{
jsclose
committed
//Calls seek onto one past the current end doc location
//Return first instance of word at new document
virtual Location Seek ( Location target ) = 0;