rainmeter-studio/RainmeterStudio.SkinDesigner/SkinStorage.cs

33 lines
803 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using RainmeterStudio.Core.Model;
using RainmeterStudio.Core.Storage;
namespace RainmeterStudio.SkinDesignerPlugin
{
public class SkinStorage : IDocumentStorage
{
2014-09-12 10:19:01 +00:00
public IDocument ReadDocument(string path)
{
throw new NotImplementedException();
}
2014-09-12 10:19:01 +00:00
public void WriteDocument(IDocument document, string path)
{
throw new NotImplementedException();
}
2014-09-12 10:19:01 +00:00
public bool CanReadDocument(string path)
{
throw new NotImplementedException();
}
2014-09-12 10:19:01 +00:00
public bool CanWriteDocument(Type documentType)
{
throw new NotImplementedException();
}
}
}