diff options
author | Adam Frisby | 2007-05-14 16:13:31 +0000 |
---|---|---|
committer | Adam Frisby | 2007-05-14 16:13:31 +0000 |
commit | 3ee195b1e6ff02715c132da431152276b464eaec (patch) | |
tree | fda9a5d2817e61894b5c567695cf3c387aa9023b /OpenGrid.Framework.Data.DB4o/DB4oGridData.cs | |
parent | Unbreaking trunk kthxbai! (diff) | |
download | opensim-SC_OLD-3ee195b1e6ff02715c132da431152276b464eaec.zip opensim-SC_OLD-3ee195b1e6ff02715c132da431152276b464eaec.tar.gz opensim-SC_OLD-3ee195b1e6ff02715c132da431152276b464eaec.tar.bz2 opensim-SC_OLD-3ee195b1e6ff02715c132da431152276b464eaec.tar.xz |
* Commented out GridManager lines until they are checked into SVN
* Added new GetProfilesInRange(x,y,x,y) data function to return sim profiles between certain coordinates (for use with World Map information, etc). Implemented in GridServer.Data.Mysql - stub functions placed in other data providers.
Diffstat (limited to 'OpenGrid.Framework.Data.DB4o/DB4oGridData.cs')
-rw-r--r-- | OpenGrid.Framework.Data.DB4o/DB4oGridData.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenGrid.Framework.Data.DB4o/DB4oGridData.cs b/OpenGrid.Framework.Data.DB4o/DB4oGridData.cs index caf7eb0..546713e 100644 --- a/OpenGrid.Framework.Data.DB4o/DB4oGridData.cs +++ b/OpenGrid.Framework.Data.DB4o/DB4oGridData.cs | |||
@@ -15,6 +15,11 @@ namespace OpenGrid.Framework.Data.DB4o | |||
15 | manager = new DB4oGridManager("gridserver.yap"); | 15 | manager = new DB4oGridManager("gridserver.yap"); |
16 | } | 16 | } |
17 | 17 | ||
18 | public SimProfileData[] GetProfilesInRange(uint a, uint b, uint c, uint d) | ||
19 | { | ||
20 | return null; | ||
21 | } | ||
22 | |||
18 | public SimProfileData GetProfileByHandle(ulong handle) { | 23 | public SimProfileData GetProfileByHandle(ulong handle) { |
19 | lock (manager.simProfiles) | 24 | lock (manager.simProfiles) |
20 | { | 25 | { |