aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/DataSnapshot/Interfaces/IDataSnapshot.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/DataSnapshot/Interfaces/IDataSnapshot.cs')
-rw-r--r--OpenSim/Region/DataSnapshot/Interfaces/IDataSnapshot.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/OpenSim/Region/DataSnapshot/Interfaces/IDataSnapshot.cs b/OpenSim/Region/DataSnapshot/Interfaces/IDataSnapshot.cs
new file mode 100644
index 0000000..697d313
--- /dev/null
+++ b/OpenSim/Region/DataSnapshot/Interfaces/IDataSnapshot.cs
@@ -0,0 +1,13 @@
1using System;
2using System.Collections.Generic;
3using System.Text;
4using System.Xml;
5
6namespace OpenSim.Region.DataSnapshot.Interfaces
7{
8 public interface IDataSnapshot
9 {
10 XmlDocument GetSnapshot(string regionName);
11 void MakeEverythingStale();
12 }
13}