using System;
using System.Collections.Generic;
using System.Text;
using ScrewTurn.Wiki.SearchEngine;
namespace ScrewTurn.Wiki.PluginFramework {
///
/// Defines a delegate that tokenizes strings.
///
/// The content to tokenize.
/// The tokenized words.
public delegate WordInfo[] Tokenizer(string content);
}