ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/RomCheater/Docking/MemorySearch/ISearchType.cs
Revision: 402
Committed: Thu Jun 21 06:30:33 2012 UTC (11 years, 5 months ago) by william
File size: 810 byte(s)
Log Message:

File Contents

# Content
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 using Utilities.TransparentControls;
6
7 namespace RomCheater.Docking.MemorySearch
8 {
9 public interface IOnlySearchType
10 {
11 SearchDataTypes DataType { get; set; }
12 bool IsUnsignedDataType { get; set; }
13 SearchCompareTypes CompareType { get; set; }
14 CompareValueTypes CompareValueType { get; set; }
15
16 object CompareStartValue { get; set; }
17 object CompareEndValue { get; set; }
18
19 bool IsFirstSearch { get; set; }
20 //List<ResultType<object>> Results { get; set; }
21 }
22
23 public interface ISearchType : IOnlySearchType
24 {
25 void LogSearchOptions();
26 ProgressBarWithPercentageLabel ProgressLogger { get; set; }
27 }
28 }