16 lines
409 B
C#
16 lines
409 B
C#
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using ScrewTurn.Wiki.SearchEngine;
|
|
|
|
namespace ScrewTurn.Wiki.PluginFramework {
|
|
|
|
/// <summary>
|
|
/// Defines a delegate that tokenizes strings.
|
|
/// </summary>
|
|
/// <param name="content">The content to tokenize.</param>
|
|
/// <returns>The tokenized words.</returns>
|
|
public delegate WordInfo[] Tokenizer(string content);
|
|
|
|
}
|