/* $Id: Anaylzer.cs,v 1.3 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>
/// Anaylzer
/// </summary>
public class Anaylzer
{
#region Property get set Instance
private IAnalyzer _instance;
public IAnalyzer Instance
{
get { return this._instance; }
set { this._instance = value; }
}
#endregion
public Anaylzer(IAnalyzer instance)
{
_instance = instance;
}
}
}
/*
* $Log: Anaylzer.cs,v $
* Revision 1.3 2004/11/24 13:57:05 larsbm
* - new project SQLToNeoPlugIn
* - switched interfaces from mainsource into plug in
*
* Revision 1.2 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
*
* Revision 1.1 2004/10/13 08:53:54 larsbm
* - Start to implement new anaylzer via bridge pattern
* - Adding a test for the new analyzer
*
*
*/
|