From d845da215f8d30ef3f34a3c207fb892c815d1fac Mon Sep 17 00:00:00 2001 From: mingchen Date: Mon, 17 Dec 2007 03:49:13 +0000 Subject: *Land has now been linked to the StorageManager. Next step is to fill in the functions for the different datastore interfaces for Land Objects. --- OpenSim/Region/Storage/OpenSim.DataStore.MSSQL/MSSQLDataStore.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'OpenSim/Region/Storage/OpenSim.DataStore.MSSQL/MSSQLDataStore.cs') diff --git a/OpenSim/Region/Storage/OpenSim.DataStore.MSSQL/MSSQLDataStore.cs b/OpenSim/Region/Storage/OpenSim.DataStore.MSSQL/MSSQLDataStore.cs index 5e4bb89..37fb4ab 100644 --- a/OpenSim/Region/Storage/OpenSim.DataStore.MSSQL/MSSQLDataStore.cs +++ b/OpenSim/Region/Storage/OpenSim.DataStore.MSSQL/MSSQLDataStore.cs @@ -292,19 +292,19 @@ namespace OpenSim.DataStore.MSSQL return terret; } - public void RemoveLandObject(uint id) + public void RemoveLandObject(uint id, LLUUID regionUUID) { } - public void StoreParcel(Land parcel) + public void StoreLandObject(Land parcel, LLUUID regionUUID) { } - public List LoadLandObjects() + public List LoadLandObjects(LLUUID regionUUID) { - return new List(); + return new List(); } public void Commit() -- cgit v1.1