-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTextLineEntry.cs
36 lines (33 loc) · 960 Bytes
/
TextLineEntry.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/* ***********************************************
* Copyright (c) 2009-2010 luoshasha. All rights reserved";
* CLR version: 4.0.30319.296"
* File name: TextLineEntry.cs"
* Date: 12/5/2012 11:49:57 AM
* Author : luoshasha(sand)
* Email : [email protected]
* Description:
* History: created by luoshasha(sand) 12/5/2012 11:49:57 AM
* ***********************************************/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace SandLib.Util
{
/// <summary>
/// a text line entry. e.g empty lines, comments
/// </summary>
public class TextLineEntry : Entry
{
private string _line;
public TextLineEntry(EntryType type, string line) :
base (type)
{
_line = line;
}
public override string GetEntryLines()
{
return _line;
}
}
}