diff options
author | Adam Frisby | 2007-05-31 10:47:38 +0000 |
---|---|---|
committer | Adam Frisby | 2007-05-31 10:47:38 +0000 |
commit | 9505128e6f4a043e589898bd9129a629afd5bddf (patch) | |
tree | dd10f0c82096ba86b77b8dced8007e49c9177e38 /OpenGridServices/OpenGrid.Framework.Data | |
parent | * Raised "MTU" factor in world map handling (diff) | |
download | opensim-SC_OLD-9505128e6f4a043e589898bd9129a629afd5bddf.zip opensim-SC_OLD-9505128e6f4a043e589898bd9129a629afd5bddf.tar.gz opensim-SC_OLD-9505128e6f4a043e589898bd9129a629afd5bddf.tar.bz2 opensim-SC_OLD-9505128e6f4a043e589898bd9129a629afd5bddf.tar.xz |
The start of a beautiful thing! (eeek inventory!)
Diffstat (limited to 'OpenGridServices/OpenGrid.Framework.Data')
-rw-r--r-- | OpenGridServices/OpenGrid.Framework.Data/InventoryData.cs | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/OpenGridServices/OpenGrid.Framework.Data/InventoryData.cs b/OpenGridServices/OpenGrid.Framework.Data/InventoryData.cs new file mode 100644 index 0000000..628868f --- /dev/null +++ b/OpenGridServices/OpenGrid.Framework.Data/InventoryData.cs | |||
@@ -0,0 +1,31 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | |||
5 | namespace OpenGrid.Framework.Data | ||
6 | { | ||
7 | public interface IInventoryData | ||
8 | { | ||
9 | /// <summary> | ||
10 | /// Initialises the interface | ||
11 | /// </summary> | ||
12 | void Initialise(); | ||
13 | |||
14 | /// <summary> | ||
15 | /// Closes the interface | ||
16 | /// </summary> | ||
17 | void Close(); | ||
18 | |||
19 | /// <summary> | ||
20 | /// The plugin being loaded | ||
21 | /// </summary> | ||
22 | /// <returns>A string containing the plugin name</returns> | ||
23 | string getName(); | ||
24 | |||
25 | /// <summary> | ||
26 | /// The plugins version | ||
27 | /// </summary> | ||
28 | /// <returns>A string containing the plugin version</returns> | ||
29 | string getVersion(); | ||
30 | } | ||
31 | } | ||