mirror of
https://github.com/opensim/opensim.git
synced 2026-08-01 14:16:07 +08:00
Renamed the new Directories. (removed the "-Source" from the end of them)
This commit is contained in:
25
OpenSim/OpenSim.Storage/LocalStorageDb4o/UUIDQuery.cs
Normal file
25
OpenSim/OpenSim.Storage/LocalStorageDb4o/UUIDQuery.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using Db4objects.Db4o;
|
||||
using Db4objects.Db4o.Query;
|
||||
using libsecondlife;
|
||||
using OpenSim.Framework.Interfaces;
|
||||
using OpenSim.Framework.Types;
|
||||
|
||||
namespace OpenSim.Storage.LocalStorageDb4o
|
||||
{
|
||||
public class UUIDQuery : Predicate
|
||||
{
|
||||
private LLUUID _findID;
|
||||
|
||||
public UUIDQuery(LLUUID find)
|
||||
{
|
||||
_findID = find;
|
||||
}
|
||||
public bool Match(PrimData prim)
|
||||
{
|
||||
return (prim.FullID == _findID);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user