2014-08-12 13:33:13 +00:00
|
|
|
|
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)
|
2014-08-12 13:33:13 +00:00
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-12 10:19:01 +00:00
|
|
|
|
public void WriteDocument(IDocument document, string path)
|
2014-08-12 13:33:13 +00:00
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-12 10:19:01 +00:00
|
|
|
|
public bool CanReadDocument(string path)
|
2014-08-12 13:33:13 +00:00
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-12 10:19:01 +00:00
|
|
|
|
public bool CanWriteDocument(Type documentType)
|
2014-08-12 13:33:13 +00:00
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|