[f-spot] Unbreak the master build, by adding what I think TagConditionWrapper would be.



commit 392961e0fb5e8c144658d205d7f030b8c3faec27
Author: Ruben Vermeersch <ruben savanne be>
Date:   Mon Jul 27 14:53:19 2009 +0200

    Unbreak the master build, by adding what I think TagConditionWrapper would be.
    
    No cookie for Stephane ;-).

 src/Query/TagConditionWrapper.cs |   26 ++++++++++++++++++++++++++
 1 files changed, 26 insertions(+), 0 deletions(-)
---
diff --git a/src/Query/TagConditionWrapper.cs b/src/Query/TagConditionWrapper.cs
new file mode 100644
index 0000000..ce6359a
--- /dev/null
+++ b/src/Query/TagConditionWrapper.cs
@@ -0,0 +1,26 @@
+/*
+ * TagConditionWrapper.cs
+ * 
+ * Author(s)
+ *	Stephane Delcroix  <stephane delcroix org>
+ *
+ * This is free software. See COPYING for details.
+ */
+
+namespace FSpot.Query
+{
+	public class TagConditionWrapper : IQueryCondition
+	{
+		string condition;
+
+		public TagConditionWrapper (string condition)
+		{
+			this.condition = condition;
+		}
+
+		public string SqlClause ()
+		{
+			return condition;
+		}
+	}
+}



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]