| class HomeDirectory | |
| { | |
| UserInterface *ui; | |
| TreeBrowser *browser; | |
| ObserverQueue *observerQueue; | |
| FileManager *fm; | |
| Path *path; | |
| static void poll_home_directory(void *a); | |
| void poll(void); | |
| public: | |
| HomeDirectory(UserInterface *ui, TreeBrowser *browser); | |
| virtual ~HomeDirectory(); | |
| static const char* getHomeDirectory(void); | |
| static void setHomeDirectory(const char* path); | |
| }; | |