aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenGridServices/OpenGrid.Framework.Data/InventoryData.cs
diff options
context:
space:
mode:
authorAdam Frisby2007-05-31 10:47:38 +0000
committerAdam Frisby2007-05-31 10:47:38 +0000
commit9505128e6f4a043e589898bd9129a629afd5bddf (patch)
treedd10f0c82096ba86b77b8dced8007e49c9177e38 /OpenGridServices/OpenGrid.Framework.Data/InventoryData.cs
parent* Raised "MTU" factor in world map handling (diff)
downloadopensim-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/InventoryData.cs')
-rw-r--r--OpenGridServices/OpenGrid.Framework.Data/InventoryData.cs31
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 @@
1using System;
2using System.Collections.Generic;
3using System.Text;
4
5namespace 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}