﻿/// <reference name="MicrosoftAjax.debug.js" />
/// <reference name="MicrosoftAjaxTimer.debug.js" />
/// <reference name="MicrosoftAjaxWebForms.debug.js" />



Type.registerNamespace("SGis.MapToolkit");


/// IPlugIn
SGis.MapToolkit.IPlugIn = function SGis$MapToolkit$IPlugIn()
{
    throw Error.notImplemented();
};
function SGis$MapToolkit$IPlugIn$get_PlugInId () {
// Obtiene el identificador único del plugin
    throw Error.notImplemented();
};
function SGis$MapToolkit$IPlugIn$load (container) {
// carga el plugin
    throw Error.notImplemented();
};
function SGis$MapToolkit$IPlugIn$unload() {
    // descarga el plugin
    throw Error.notImplemented();
};
SGis.MapToolkit.IPlugIn.prototype =
{
    get_PlugInId : SGis$MapToolkit$IPlugIn$get_PlugInId,
    load: SGis$MapToolkit$IPlugIn$load,
    unload: SGis$MapToolkit$IPlugIn$unload
}
SGis.MapToolkit.IPlugIn.registerInterface("SGis.MapToolkit.IPlugIn");

if(typeof(Sys)!=='undefined')Sys.Application.notifyScriptLoaded();