summaryrefslogtreecommitdiff
path: root/indra/llcommon/llpredicate.cpp
diff options
context:
space:
mode:
authorRichard Linden <none@none>2012-10-22 19:54:10 -0700
committerRichard Linden <none@none>2012-10-22 19:54:10 -0700
commitd6634fcd2433e18eea1a9bf31da6d7e531817d77 (patch)
tree0d37227fd7424ef329f3dc3d642805a04b5c22b7 /indra/llcommon/llpredicate.cpp
parent534e0ee0514b482a8b32a72d5afed9a4652c0133 (diff)
SH-3405 WIP convert existing stats to lltrace system
sanitized param block code to accept isValid and isProvided at any point added predicates to control serialization
Diffstat (limited to 'indra/llcommon/llpredicate.cpp')
-rw-r--r--indra/llcommon/llpredicate.cpp33
1 files changed, 33 insertions, 0 deletions
diff --git a/indra/llcommon/llpredicate.cpp b/indra/llcommon/llpredicate.cpp
new file mode 100644
index 0000000000..8dcd9247b7
--- /dev/null
+++ b/indra/llcommon/llpredicate.cpp
@@ -0,0 +1,33 @@
+/**
+ * @file llpredicate.cpp
+ * @brief abstraction for filtering objects by predicates, with arbitrary boolean expressions
+ *
+ * $LicenseInfo:firstyear=2008&license=viewerlgpl$
+ * Second Life Viewer Source Code
+ * Copyright (C) 2010, Linden Research, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation;
+ * version 2.1 of the License only.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ *
+ * Linden Research, Inc., 945 Battery Street, San Francisco, CA 94111 USA
+ * $/LicenseInfo$
+ */
+#include "linden_common.h"
+
+#include "llpredicate.h"
+
+namespace LLPredicate
+{
+ EmptyRule make_rule() { return EmptyRule(); }
+}