Files
Yab2Cpp/src/YabFilePanelLooper.h
2015-04-13 13:40:27 -07:00

20 lines
327 B
C++

#ifndef YABFPLOOPER_H
#define YABFPLOOPER_H
#include <Looper.h>
#include <Message.h>
#include <Entry.h>
class YabFilePanelLooper : public BLooper
{
public:
YabFilePanelLooper(sem_id semaphore);
void MessageReceived(BMessage *msg);
BEntry *GetChosenFile();
private:
BEntry *myEntry;
sem_id mySemaphore;
};
#endif