mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-04-02 17:57:22 +08:00
27 lines
541 B
Objective-C
27 lines
541 B
Objective-C
//
|
|
// DBPostsTableViewController.h
|
|
// DiscussionBoard
|
|
//
|
|
// Created by Jeremy Ellison on 1/7/11.
|
|
// Copyright 2011 Two Toasters. All rights reserved.
|
|
//
|
|
|
|
#import <Three20/Three20.h>
|
|
#import "DBResourceListTableViewController.h"
|
|
#import "DBTopic.h"
|
|
|
|
/**
|
|
* Displays a table of Posts within a given Topic
|
|
*/
|
|
@interface DBPostsTableViewController : DBResourceListTableViewController {
|
|
// TODO: Just use a Topic
|
|
NSString* _topicID;
|
|
}
|
|
|
|
/**
|
|
* The Topic we are viewing Posts within
|
|
*/
|
|
@property (nonatomic, readonly) DBTopic* topic;
|
|
|
|
@end
|