mirror of
https://github.com/zeldaret/ss.git
synced 2024-12-04 11:54:36 +00:00
26af4db82d
* update from dtk-template and start work towards using clangd * include <a> -> "a" * Update build.yml * remove/add non-trivial class in union warning
15 lines
217 B
C++
15 lines
217 B
C++
#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
|