From 10f75f936e1322ea1e328799cfba08229d667a78 Mon Sep 17 00:00:00 2001 From: Adam Frisby Date: Fri, 4 May 2007 03:25:20 +0000 Subject: Committing OpenGrid.Framework.Data and MySql Adaptor - not in functional state yet, posted for reference and future use. --- OpenGrid.Framework.Data/GridData.cs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 OpenGrid.Framework.Data/GridData.cs (limited to 'OpenGrid.Framework.Data/GridData.cs') diff --git a/OpenGrid.Framework.Data/GridData.cs b/OpenGrid.Framework.Data/GridData.cs new file mode 100644 index 0000000..9bc2ce3 --- /dev/null +++ b/OpenGrid.Framework.Data/GridData.cs @@ -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(); + } +} -- cgit v1.1