Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/woip/app/SearchResult.m
diff options
context:
space:
mode:
Diffstat (limited to 'woip/app/SearchResult.m')
-rw-r--r--woip/app/SearchResult.m13
1 files changed, 13 insertions, 0 deletions
diff --git a/woip/app/SearchResult.m b/woip/app/SearchResult.m
new file mode 100644
index 0000000..848c365
--- /dev/null
+++ b/woip/app/SearchResult.m
@@ -0,0 +1,13 @@
+#import "SearchResult.h"
+
+@implementation SearchResult
+
+-(void) setArticle: (NSString *) title {
+ article = title;
+}
+
+-(NSString *) article {
+ return article;
+}
+
+@end