* Cleaned namespaces of entire solution. OpenSim directories now correspond with namespaces.

This commit is contained in:
Adam Frisby
2008-05-01 15:36:39 +00:00
parent 92fd719d7b
commit a1c8aa4050
91 changed files with 790 additions and 272 deletions

View File

@@ -25,7 +25,7 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
namespace OpenSim.Grid.ScriptServer
namespace OpenSim.Grid.ScriptServer.ScriptServer.Region
{
public abstract class RegionBase
{
@@ -240,4 +240,4 @@ namespace OpenSim.Grid.ScriptServer
onhttp_response();
}
}
}
}

View File

@@ -25,9 +25,8 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
namespace OpenSim.Grid.ScriptServer
namespace OpenSim.Grid.ScriptServer.ScriptServer.Region
{
// Maintains connection and communication to a region
public class RegionConnectionManager : RegionBase
{
private ScriptServerMain m_ScriptServerMain;
@@ -39,4 +38,4 @@ namespace OpenSim.Grid.ScriptServer
m_Connection = Connection;
}
}
}
}

View File

@@ -28,10 +28,10 @@
using System.Collections.Generic;
using System.Threading;
using OpenSim.Framework;
using OpenSim.Grid.ScriptServer.ScriptServer.Region;
namespace OpenSim.Grid.ScriptServer
namespace OpenSim.Grid.ScriptServer.ScriptServer
{
// Waiting for incoming script requests from region
internal class RegionCommManager
{
private Thread listenThread;
@@ -99,4 +99,4 @@ namespace OpenSim.Grid.ScriptServer
Regions.Add(new RegionConnectionManager(m_ScriptServerMain, null));
}
}
}
}