/* $Id: Writer.cs,v 1.2 2004/11/24 13:57:05 larsbm Exp $
* Copyright (c) 2004 Engine EAR GmbH & Co. KG
* Developed by: Lars Behrmann, lb@engine.de
*/
using System;
using SQLToNeo.PlugIn;
namespace SQLToNeo.Model{
/// <summary>
/// Writer
/// </summary>
public class Writer
{
#region Property get set Instance
private IWriter _instance;
public IWriter Instance
{
get { return this._instance; }
set { this._instance = value; }
}
#endregion
public Writer(IWriter instance)
{
_instance = instance;
}
}
}
/*
* $Log: Writer.cs,v $
* Revision 1.2 2004/11/24 13:57:05 larsbm
* - new project SQLToNeoPlugIn
* - switched interfaces from mainsource into plug in
*
* Revision 1.1 2004/10/27 14:09:23 larsbm
* - Fixed bugs in tablebuilder, TablestyleCreator
* - Working on the forms
* - Finishing DBTypes
* - Add IWriter & Writer, NeoXMLModelWriter as abstraction for writing the xml model
*
*/
|