diff options
Diffstat (limited to 'Source/SPTableContentFilterController.h')
-rw-r--r-- | Source/SPTableContentFilterController.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Source/SPTableContentFilterController.h b/Source/SPTableContentFilterController.h new file mode 100644 index 00000000..542f4bad --- /dev/null +++ b/Source/SPTableContentFilterController.h @@ -0,0 +1,21 @@ +// This class is a dummy. +// It is only present because DBView.xib already references it, but the +// code itself is still in another branch. This stub is used to avoid a warning +// from the Nib loader, saying 'this class was not found and replaced with a NSObject'. + +#import <Foundation/Foundation.h> + +@class SPSplitView; +@class SPTableData; +@class SPDatabaseDocument; +@class SPTablesList; + +@interface SPTableContentFilterController : NSObject { + IBOutlet SPSplitView *contentSplitView; + IBOutlet NSRuleEditor *filterRuleEditor; + IBOutlet SPTableData *tableDataInstance; + IBOutlet SPDatabaseDocument *tableDocumentInstance; + IBOutlet SPTablesList *tablesListInstance; +} + +@end |