Files
RestKit/Examples/RKDiscussionBoardExample/DiscussionBoard/Classes/Controllers/DBPostsTableViewController.h
2011-01-11 12:32:18 -05:00

21 lines
446 B
Objective-C

//
// DBPostsTableViewController.h
// DiscussionBoard
//
// Created by Jeremy Ellison on 1/7/11.
// Copyright 2011 __MyCompanyName__. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <Three20/Three20.h>
#import "DBResourceListTableViewController.h"
#import "DBTopic.h"
@interface DBPostsTableViewController : DBResourceListTableViewController {
NSString* _topicID;
}
@property (nonatomic, readonly) DBTopic* topic;
@end