Files
RestKit/Examples/RKDiscussionBoardExample/DiscussionBoard/Code/Controllers/DBTopicViewController.h
2011-01-17 19:21:57 -05:00

19 lines
408 B
Objective-C

//
// DBEditTopicViewController.h
// DiscussionBoard
//
// Created by Jeremy Ellison on 1/10/11.
// Copyright 2011 Two Toasters. All rights reserved.
//
#import <Three20/Three20.h>
#import "DBAuthenticatedTableViewController.h"
#import "DBTopic.h"
@interface DBTopicViewController : DBAuthenticatedTableViewController <RKObjectLoaderDelegate> {
UITextField* _topicNameField;
DBTopic* _topic;
}
@end