mirror of
https://github.com/nickshanks/ResKnife.git
synced 2024-12-22 02:29:56 +00:00
23 lines
465 B
Objective-C
23 lines
465 B
Objective-C
#include "ResKnife.h"
|
|
#include "PlugWindow.h"
|
|
|
|
#ifndef _ResKnife_PickerWindow_
|
|
#define _ResKnife_PickerWindow_
|
|
|
|
/*!
|
|
@header PickerWindow
|
|
@discussion A class specifically designed to maintain an external picker window.
|
|
*/
|
|
|
|
/*!
|
|
@class PickerWindow
|
|
@discussion A class specifically designed to maintain an external picker window.
|
|
*/
|
|
class PickerWindow : PlugWindow
|
|
{
|
|
public:
|
|
// methods
|
|
PickerWindow( FileWindowPtr ownerFile, ResType resType );
|
|
};
|
|
|
|
#endif |