diff options
author | Adam Frisby | 2007-05-04 03:25:20 +0000 |
---|---|---|
committer | Adam Frisby | 2007-05-04 03:25:20 +0000 |
commit | 10f75f936e1322ea1e328799cfba08229d667a78 (patch) | |
tree | 87bc3faaeb19595a67ef0b286a93dbdb117c1942 /OpenGrid.Framework.Data/GridData.cs | |
parent | fix array size (diff) | |
download | opensim-SC_OLD-10f75f936e1322ea1e328799cfba08229d667a78.zip opensim-SC_OLD-10f75f936e1322ea1e328799cfba08229d667a78.tar.gz opensim-SC_OLD-10f75f936e1322ea1e328799cfba08229d667a78.tar.bz2 opensim-SC_OLD-10f75f936e1322ea1e328799cfba08229d667a78.tar.xz |
Committing OpenGrid.Framework.Data and MySql Adaptor - not in functional state yet, posted for reference and future use.
Diffstat (limited to 'OpenGrid.Framework.Data/GridData.cs')
-rw-r--r-- | OpenGrid.Framework.Data/GridData.cs | 14 |
1 files changed, 14 insertions, 0 deletions
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 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | |||
5 | namespace OpenGrid.Framework.Data | ||
6 | { | ||
7 | public interface IGridData | ||
8 | { | ||
9 | SimProfileData GetProfileByHandle(ulong regionHandle); | ||
10 | SimProfileData GetProfileByLLUUID(libsecondlife.LLUUID UUID); | ||
11 | bool AuthenticateSim(libsecondlife.LLUUID UUID, ulong regionHandle, string simrecvkey); | ||
12 | void Initialise(); | ||
13 | } | ||
14 | } | ||