You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
595 B
31 lines
595 B
/* |
|
* Created by SharpDevelop. |
|
* User: Peter Forstmeier |
|
* Date: 02.01.2012 |
|
* Time: 20:26 |
|
* |
|
* To change this template use Tools | Options | Coding | Edit Standard Headers. |
|
*/ |
|
using System; |
|
using System.Collections.Generic; |
|
|
|
namespace ICSharpCode.CodeQualityAnalysis.Utility.Queries |
|
{ |
|
/// <summary> |
|
/// Description of BaseQuery. |
|
/// </summary> |
|
public class BaseQuery |
|
{ |
|
public BaseQuery(Module mainModule) |
|
{ |
|
MainModule = mainModule; |
|
} |
|
|
|
protected Module MainModule {get; private set;} |
|
|
|
public virtual List<ItemWithAction> GetQueryList () |
|
{ |
|
return null; |
|
} |
|
} |
|
}
|
|
|