diff options
author | Mike Mazur | 2008-07-18 04:51:41 +0000 |
---|---|---|
committer | Mike Mazur | 2008-07-18 04:51:41 +0000 |
commit | e0e0db366061eae148364e3d5670f275b1ab25b7 (patch) | |
tree | cbd4890958aa28a3ff98a917909ec77247a80d00 /OpenSim/Data/GridDataBase.cs | |
parent | Make scripts LSL compliant. (diff) | |
download | opensim-SC_OLD-e0e0db366061eae148364e3d5670f275b1ab25b7.zip opensim-SC_OLD-e0e0db366061eae148364e3d5670f275b1ab25b7.tar.gz opensim-SC_OLD-e0e0db366061eae148364e3d5670f275b1ab25b7.tar.bz2 opensim-SC_OLD-e0e0db366061eae148364e3d5670f275b1ab25b7.tar.xz |
Thanks, sempuki, for a patch that moves all grid plugins to new PluginLoader (issue 1763).
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Data/GridDataBase.cs | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/OpenSim/Data/GridDataBase.cs b/OpenSim/Data/GridDataBase.cs index 0c9d24a..6480f84 100644 --- a/OpenSim/Data/GridDataBase.cs +++ b/OpenSim/Data/GridDataBase.cs | |||
@@ -29,19 +29,21 @@ using libsecondlife; | |||
29 | 29 | ||
30 | namespace OpenSim.Data | 30 | namespace OpenSim.Data |
31 | { | 31 | { |
32 | public abstract class GridDataBase : IGridData | 32 | public abstract class GridDataBase : IGridDataPlugin |
33 | { | 33 | { |
34 | public abstract RegionProfileData GetProfileByHandle(ulong regionHandle); | 34 | public abstract RegionProfileData GetProfileByHandle(ulong regionHandle); |
35 | public abstract RegionProfileData GetProfileByLLUUID(LLUUID UUID); | 35 | public abstract RegionProfileData GetProfileByLLUUID(LLUUID UUID); |
36 | public abstract RegionProfileData GetProfileByString(string regionName); | 36 | public abstract RegionProfileData GetProfileByString(string regionName); |
37 | public abstract RegionProfileData[] GetProfilesInRange(uint Xmin, uint Ymin, uint Xmax, uint Ymax); | 37 | public abstract RegionProfileData[] GetProfilesInRange(uint Xmin, uint Ymin, uint Xmax, uint Ymax); |
38 | public abstract bool AuthenticateSim(LLUUID UUID, ulong regionHandle, string simrecvkey); | 38 | public abstract bool AuthenticateSim(LLUUID UUID, ulong regionHandle, string simrecvkey); |
39 | public abstract void Initialise(string connect); | ||
40 | public abstract void Close(); | ||
41 | public abstract string getName(); | ||
42 | public abstract string getVersion(); | ||
43 | public abstract DataResponse AddProfile(RegionProfileData profile); | 39 | public abstract DataResponse AddProfile(RegionProfileData profile); |
44 | public abstract ReservationData GetReservationAtPoint(uint x, uint y); | 40 | public abstract ReservationData GetReservationAtPoint(uint x, uint y); |
45 | public abstract DataResponse UpdateProfile(RegionProfileData profile); | 41 | public abstract DataResponse UpdateProfile(RegionProfileData profile); |
42 | |||
43 | public abstract void Initialise(); | ||
44 | public abstract void Initialise(string connect); | ||
45 | public abstract void Dispose(); | ||
46 | public abstract string Name { get; } | ||
47 | public abstract string Version { get; } | ||
46 | } | 48 | } |
47 | } | 49 | } |