Skip to content

Instantly share code, notes, and snippets.

@pbrewczynski
Created March 12, 2014 18:20
Show Gist options
  • Save pbrewczynski/9513060 to your computer and use it in GitHub Desktop.
Save pbrewczynski/9513060 to your computer and use it in GitHub Desktop.
//
// 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