diff options
author | Sean Dague | 2008-04-02 15:22:39 +0000 |
---|---|---|
committer | Sean Dague | 2008-04-02 15:22:39 +0000 |
commit | 35420b21a3a0a3e8f104f7ce1c9d6c091a8f5212 (patch) | |
tree | d0ce7aab84032a1daf50aac05a58a8f55a01f301 /OpenSim/Data/GridDataBase.cs | |
parent | * Add some temporary task inventory item inflation debug messages to investig... (diff) | |
download | opensim-SC_OLD-35420b21a3a0a3e8f104f7ce1c9d6c091a8f5212.zip opensim-SC_OLD-35420b21a3a0a3e8f104f7ce1c9d6c091a8f5212.tar.gz opensim-SC_OLD-35420b21a3a0a3e8f104f7ce1c9d6c091a8f5212.tar.bz2 opensim-SC_OLD-35420b21a3a0a3e8f104f7ce1c9d6c091a8f5212.tar.xz |
reorganizing namespaces to put all the Data stuff into it's own namespace
/ dir structure. This is coming in over a few changesets so consider trunk
broken for the next 30 minutes as these get pulled together.
Diffstat (limited to 'OpenSim/Data/GridDataBase.cs')
-rw-r--r-- | OpenSim/Data/GridDataBase.cs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/OpenSim/Data/GridDataBase.cs b/OpenSim/Data/GridDataBase.cs new file mode 100644 index 0000000..9d6e832 --- /dev/null +++ b/OpenSim/Data/GridDataBase.cs | |||
@@ -0,0 +1,22 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | using libsecondlife; | ||
5 | |||
6 | namespace OpenSim.Framework.Data | ||
7 | { | ||
8 | public abstract class GridDataBase : IGridData | ||
9 | { | ||
10 | public abstract RegionProfileData GetProfileByHandle(ulong regionHandle); | ||
11 | public abstract RegionProfileData GetProfileByLLUUID(LLUUID UUID); | ||
12 | public abstract RegionProfileData GetProfileByString(string regionName); | ||
13 | public abstract RegionProfileData[] GetProfilesInRange(uint Xmin, uint Ymin, uint Xmax, uint Ymax); | ||
14 | public abstract bool AuthenticateSim(LLUUID UUID, ulong regionHandle, string simrecvkey); | ||
15 | public abstract void Initialise(); | ||
16 | public abstract void Close(); | ||
17 | public abstract string getName(); | ||
18 | public abstract string getVersion(); | ||
19 | public abstract DataResponse AddProfile(RegionProfileData profile); | ||
20 | public abstract ReservationData GetReservationAtPoint(uint x, uint y); | ||
21 | } | ||
22 | } | ||