/**********************************************************************
 *
 * summarise.h --
 *
 * By Michael Dewsnip
 *
 * Copyright (C) 2010  DL Consulting Ltd.
 *
 *********************************************************************/


#ifndef SUMMARISE_H
#define SUMMARISE_H

#include "text_t.h"


// Null implementation of summarise() that just returns the input
text_t summarise(text_t &htmlstr, text_t &query, int summaryLength) { return htmlstr; }


#endif
