Created
March 12, 2014 18:20
-
-
Save pbrewczynski/9513060 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// TwigitSentenceDescriptor.m | |
// Twigit | |
// | |
// Created by Paweł Brewczyński on 3/12/14. | |
// Copyright (c) 2014 Paweł Brewczyński. All rights reserved. | |
// | |
#import "TwigitSentenceDescriptor.h" | |
@implementation TwigitSentenceDescriptor | |
- (instancetype) initWithTextID:(NSUInteger)textID andSentenceID:(NSUInteger)sentenceID andArrayOfWordsDescriptors:(NSArray *)wordsDescriptors { | |
self = [super init]; | |
if(self) { | |
self.textID = textID; | |
self.sentenceID = sentenceID; | |
self.wordsDescriptors = wordsDescriptors; | |
} | |
return self; | |
} | |
@end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment