diff options
author | Melanie | 2012-06-07 22:39:03 +0200 |
---|---|---|
committer | Melanie | 2012-06-07 22:39:03 +0200 |
commit | 26c5b329886e3bbf81e2c853ef2fc6d648ad5273 (patch) | |
tree | b19ea7eef37fd74dfd79f5c17ab8513462add2b4 /OpenSim/Tests/Common | |
parent | Implement playing of the real collision sounds, change scaling for avatar (diff) | |
download | opensim-SC-26c5b329886e3bbf81e2c853ef2fc6d648ad5273.zip opensim-SC-26c5b329886e3bbf81e2c853ef2fc6d648ad5273.tar.gz opensim-SC-26c5b329886e3bbf81e2c853ef2fc6d648ad5273.tar.bz2 opensim-SC-26c5b329886e3bbf81e2c853ef2fc6d648ad5273.tar.xz |
Add the ability to query the MYSQL databse for a list of the stored prim UUIDs
Diffstat (limited to 'OpenSim/Tests/Common')
-rw-r--r-- | OpenSim/Tests/Common/Mock/MockRegionDataPlugin.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/OpenSim/Tests/Common/Mock/MockRegionDataPlugin.cs b/OpenSim/Tests/Common/Mock/MockRegionDataPlugin.cs index 579d41c..38fbbe3 100644 --- a/OpenSim/Tests/Common/Mock/MockRegionDataPlugin.cs +++ b/OpenSim/Tests/Common/Mock/MockRegionDataPlugin.cs | |||
@@ -112,6 +112,11 @@ namespace OpenSim.Data.Null | |||
112 | { | 112 | { |
113 | m_store.StoreRegionWindlightSettings(wl); | 113 | m_store.StoreRegionWindlightSettings(wl); |
114 | } | 114 | } |
115 | |||
116 | public UUID[] GetObjectIDs(UUID regionID) | ||
117 | { | ||
118 | return new UUID[0]; | ||
119 | } | ||
115 | } | 120 | } |
116 | 121 | ||
117 | /// <summary> | 122 | /// <summary> |
@@ -285,5 +290,10 @@ namespace OpenSim.Data.Null | |||
285 | public void Shutdown() | 290 | public void Shutdown() |
286 | { | 291 | { |
287 | } | 292 | } |
293 | |||
294 | public UUID[] GetObjectIDs(UUID regionID) | ||
295 | { | ||
296 | return new UUID[0]; | ||
297 | } | ||
288 | } | 298 | } |
289 | } | 299 | } |