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.SQLite | |
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.SQLite')
-rw-r--r-- | OpenGrid.Framework.Data.SQLite/SQLiteGridData.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenGrid.Framework.Data.SQLite/SQLiteGridData.cs b/OpenGrid.Framework.Data.SQLite/SQLiteGridData.cs index 02e153f..4850f12 100644 --- a/OpenGrid.Framework.Data.SQLite/SQLiteGridData.cs +++ b/OpenGrid.Framework.Data.SQLite/SQLiteGridData.cs | |||
@@ -35,6 +35,11 @@ namespace OpenGrid.Framework.Data.SQLite | |||
35 | return "0.1"; | 35 | return "0.1"; |
36 | } | 36 | } |
37 | 37 | ||
38 | public SimProfileData[] GetProfilesInRange(uint a, uint b, uint c, uint d) | ||
39 | { | ||
40 | return null; | ||
41 | } | ||
42 | |||
38 | /// <summary> | 43 | /// <summary> |
39 | /// Returns a sim profile from it's location | 44 | /// Returns a sim profile from it's location |
40 | /// </summary> | 45 | /// </summary> |