Committing OpenGrid.Framework.Data and MySql Adaptor - not in functional state yet, posted for reference and future use.

This commit is contained in:
Adam Frisby
2007-05-04 03:25:20 +00:00
parent d054ce7602
commit 10f75f936e
11 changed files with 432 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace OpenGrid.Framework.Data
{
public interface IGridData
{
SimProfileData GetProfileByHandle(ulong regionHandle);
SimProfileData GetProfileByLLUUID(libsecondlife.LLUUID UUID);
bool AuthenticateSim(libsecondlife.LLUUID UUID, ulong regionHandle, string simrecvkey);
void Initialise();
}
}