blob: 2ee0b9d1f74fe43f3426556151978661bdfe4422 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef D_LYT_FILE_SELECT_H
#define D_LYT_FILE_SELECT_H
#include "d/d_base.h"
class dLytFileSelectMgr_c : public dBase_c {
public:
dLytFileSelectMgr_c();
virtual ~dLytFileSelectMgr_c();
private:
};
#endif
|