-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathITemplate.cs
More file actions
47 lines (40 loc) · 1.09 KB
/
ITemplate.cs
File metadata and controls
47 lines (40 loc) · 1.09 KB
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
37
38
39
40
41
42
43
44
45
46
47
using System.CodeDom.Compiler;
namespace T4SQL
{
public interface ITemplate
{
TemplateContext Context
{
get;
set;
}
#region Auto-generated by TextTemplatingFilePreprocessor
CompilerErrorCollection Errors
{
get;
}
void Error(string message);
string TransformText();
#endregion
}
}
////////////////////////////////////////////////////////////////////////////////////////////////////
//
// Copyright 2013 Abel Cheng
// This source code is subject to terms and conditions of the Apache License, Version 2.0.
// See http://www.apache.org/licenses/LICENSE-2.0.
// All other rights reserved.
// You must not remove this notice, or any other, from this software.
//
// Original Author: Abel Cheng <abelcys@gmail.com>
// Created Date: March 08, 2013, 12:18:21 PM
// Primary Host: http://t4sql.codeplex.com
// Change Log:
// Author Date Comment
//
//
//
//
// (Keep code clean rather than complicated code plus long comments.)
//
////////////////////////////////////////////////////////////////////////////////////////////////////