aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Interfaces
diff options
context:
space:
mode:
authorMelanie2012-03-29 01:13:08 +0100
committerMelanie2012-03-29 01:13:08 +0100
commitbd83676d6c01b59c5d2b55f81e5f3ce9885f450e (patch)
treed541a3973f9e243d4bd945ee64641f4b566ac161 /OpenSim/Region/Framework/Interfaces
parentRevert "Simplify friends caching by only doing this for root agents - no func... (diff)
downloadopensim-SC_OLD-bd83676d6c01b59c5d2b55f81e5f3ce9885f450e.zip
opensim-SC_OLD-bd83676d6c01b59c5d2b55f81e5f3ce9885f450e.tar.gz
opensim-SC_OLD-bd83676d6c01b59c5d2b55f81e5f3ce9885f450e.tar.bz2
opensim-SC_OLD-bd83676d6c01b59c5d2b55f81e5f3ce9885f450e.tar.xz
Change namespace on CallingCardModule and correct interface file placemant. Also ass OpenSource header
Diffstat (limited to 'OpenSim/Region/Framework/Interfaces')
-rw-r--r--OpenSim/Region/Framework/Interfaces/ICallingCardModule.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/ICallingCardModule.cs b/OpenSim/Region/Framework/Interfaces/ICallingCardModule.cs
new file mode 100644
index 0000000..17e6de35
--- /dev/null
+++ b/OpenSim/Region/Framework/Interfaces/ICallingCardModule.cs
@@ -0,0 +1,13 @@
1using System;
2using System.Collections.Generic;
3using System.Text;
4using OpenMetaverse;
5using OpenSim.Framework;
6
7namespace OpenSim.Framework
8{
9 public interface ICallingCardModule
10 {
11 UUID CreateCallingCard(UUID userID, UUID creatorID, UUID folderID);
12 }
13}