#develop (short for SharpDevelop) is a free IDE for .NET programming languages.
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.
 
 
 
 
 
 

41 lines
655 B

/*
* Created by SharpDevelop.
* User: Omnibrain
* Date: 20.01.2005
* Time: 16:07
*
* To change this template use Tools | Options | Coding | Edit Standard Headers.
*/
using System;
using System.Drawing;
namespace ICSharpCode.SharpDevelop.Dom
{
/// <summary>
/// Description of SearchDefinition.
/// </summary>
public class FilePosition
{
string filename;
Point position;
public FilePosition(string filename, Point position)
{
this.filename = filename;
this.position = position;
}
public string Filename {
get {
return filename;
}
}
public Point Position {
get {
return position;
}
}
}
}