diff options
author | Adam Frisby | 2008-04-29 14:04:55 +0000 |
---|---|---|
committer | Adam Frisby | 2008-04-29 14:04:55 +0000 |
commit | 375163a6fece8b3a57c7555246abe8338223a599 (patch) | |
tree | 163001ca96a4b4d08589e9772f78510677d5d0dc /OpenSim/Framework/IInventoryData.cs | |
parent | Patch from Melanie: 0001087: Crash to bash de-linking objects. Thanks Melanie! (diff) | |
download | opensim-SC_OLD-375163a6fece8b3a57c7555246abe8338223a599.zip opensim-SC_OLD-375163a6fece8b3a57c7555246abe8338223a599.tar.gz opensim-SC_OLD-375163a6fece8b3a57c7555246abe8338223a599.tar.bz2 opensim-SC_OLD-375163a6fece8b3a57c7555246abe8338223a599.tar.xz |
* Spring cleaning.
* Added new generic "Location" class to handle 2D integer locations. Going to use it to replace all RegionHandle and X,Y coordinate references throughout the entire project. You have been warned.
Diffstat (limited to 'OpenSim/Framework/IInventoryData.cs')
-rw-r--r-- | OpenSim/Framework/IInventoryData.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Framework/IInventoryData.cs b/OpenSim/Framework/IInventoryData.cs index 508099e..f283085 100644 --- a/OpenSim/Framework/IInventoryData.cs +++ b/OpenSim/Framework/IInventoryData.cs | |||
@@ -56,14 +56,14 @@ namespace OpenSim.Framework | |||
56 | /// </summary> | 56 | /// </summary> |
57 | /// <returns>A string containing the plugin version</returns> | 57 | /// <returns>A string containing the plugin version</returns> |
58 | string getVersion(); | 58 | string getVersion(); |
59 | 59 | ||
60 | /// <summary> | 60 | /// <summary> |
61 | /// Returns all child folders in the hierarchy from the parent folder and down. | 61 | /// Returns all child folders in the hierarchy from the parent folder and down. |
62 | /// Does not return the parent folder itself. | 62 | /// Does not return the parent folder itself. |
63 | /// </summary> | 63 | /// </summary> |
64 | /// <param name="parentID">The folder to get subfolders for</param> | 64 | /// <param name="parentID">The folder to get subfolders for</param> |
65 | /// <returns>A list of inventory folders</returns> | 65 | /// <returns>A list of inventory folders</returns> |
66 | List<InventoryFolderBase> getFolderHierarchy(LLUUID parentID); | 66 | List<InventoryFolderBase> getFolderHierarchy(LLUUID parentID); |
67 | 67 | ||
68 | /// <summary> | 68 | /// <summary> |
69 | /// Returns a list of inventory items contained within the specified folder | 69 | /// Returns a list of inventory items contained within the specified folder |
@@ -149,4 +149,4 @@ namespace OpenSim.Framework | |||
149 | /// <param name="folder">The id of the folder</param> | 149 | /// <param name="folder">The id of the folder</param> |
150 | void deleteInventoryFolder(LLUUID folder); | 150 | void deleteInventoryFolder(LLUUID folder); |
151 | } | 151 | } |
152 | } | 152 | } \ No newline at end of file |