/VisualStudio/ABB.SrcML.VisualStudio.TransformTemplate/MyTransform.cs
https://github.com/nkcsgexi/SrcML.NET · C# · 22 lines · 20 code · 2 blank · 0 comment · 0 complexity · 5e77185df0f1385f0902ac5a0a3914fa MD5 · raw file
- using System.Collections.Generic;
- using System.Linq;
- using System.Xml;
- using System.Xml.Linq;
- using System.Xml.XPath;
- using ABB.SrcML;
- namespace ABB.SrcML.VisualStudio.TransformTemplate
- {
- public class MyTransform : ITransform
- {
- public IEnumerable<XElement> Query(XElement element)
- {
- return Enumerable.Empty<XElement>();
- }
- public XElement Transform(XElement element)
- {
- return element;
- }
- }
- }