diff options
author | Melanie | 2011-01-27 02:58:14 +0100 |
---|---|---|
committer | Melanie | 2011-01-27 02:58:14 +0100 |
commit | dd1980c24c280a4cc3fc08e0a06ed8c9d0db583c (patch) | |
tree | d6b3d3b7d78a3d8b9a4b3a5ad8b483f487fd971f /OpenSim/Region/Framework/Interfaces/IUserAccountCacheModule.cs | |
parent | Fix merge artifacts (diff) | |
download | opensim-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.cs | 13 |
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 | |||
8 | using OpenSim.Region.Framework.Scenes; | ||
9 | |||
10 | public interface IUserAccountCacheModule | ||
11 | { | ||
12 | void Remove(string name); | ||
13 | } | ||