mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
26 lines
564 B
C#
26 lines
564 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using RainmeterStudio.Model;
|
|
|
|
namespace RainmeterStudio.Documents.Text
|
|
{
|
|
/// <summary>
|
|
/// A blank text document template
|
|
/// </summary>
|
|
[AutoRegister]
|
|
public class TextDocumentTemplate : DocumentTemplate
|
|
{
|
|
public TextDocumentTemplate()
|
|
: base("TextDocument", "txt")
|
|
{
|
|
}
|
|
|
|
public override IDocument CreateDocument()
|
|
{
|
|
return new TextDocument();
|
|
}
|
|
}
|
|
}
|