Go to the documentation of this file.00001 using System;
00002 using System.Collections.Generic;
00003 using System.Linq;
00004 using System.Text;
00005
00006 namespace UniversalBibleAPI
00007 {
00013 public interface IFilter
00014 {
00015 string PerformFilter(string TextToFilter);
00016 }
00017 }