aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Interfaces/IUserAccountCacheModule.cs
diff options
context:
space:
mode:
authorMelanie2011-01-27 02:58:14 +0100
committerMelanie2011-01-27 02:58:14 +0100
commitdd1980c24c280a4cc3fc08e0a06ed8c9d0db583c (patch)
treed6b3d3b7d78a3d8b9a4b3a5ad8b483f487fd971f /OpenSim/Region/Framework/Interfaces/IUserAccountCacheModule.cs
parentFix merge artifacts (diff)
downloadopensim-SC_OLD-dd1980c24c280a4cc3fc08e0a06ed8c9d0db583c.zip
opensim-SC_OLD-dd1980c24c280a4cc3fc08e0a06ed8c9d0db583c.tar.gz
opensim-SC_OLD-dd1980c24c280a4cc3fc08e0a06ed8c9d0db583c.tar.bz2
opensim-SC_OLD-dd1980c24c280a4cc3fc08e0a06ed8c9d0db583c.tar.xz
Add an interface for a region's user account cache
Diffstat (limited to 'OpenSim/Region/Framework/Interfaces/IUserAccountCacheModule.cs')
-rw-r--r--OpenSim/Region/Framework/Interfaces/IUserAccountCacheModule.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/IUserAccountCacheModule.cs b/OpenSim/Region/Framework/Interfaces/IUserAccountCacheModule.cs
new file mode 100644
index 0000000..d1a4d8e
--- /dev/null
+++ b/OpenSim/Region/Framework/Interfaces/IUserAccountCacheModule.cs
@@ -0,0 +1,13 @@
1///////////////////////////////////////////////////////////////////
2//
3// (c) Careminster Limited, Melanie Thielker and the Meta7 Team
4//
5// This file is not open source. All rights reserved
6//
7
8using OpenSim.Region.Framework.Scenes;
9
10public interface IUserAccountCacheModule
11{
12 void Remove(string name);
13}