Lhaz
読み取り中…
検索中…
一致する文字列を見つけられません
lhazfile_db.h
[詳解]
1/*************************************************************************/
6#pragma once
7
8#include "altstr.hpp"
9#include <windows.h>
10#include <gcroot.h>
11#include "lhazfile.h"
12
13class MYSTR;
14
15class LHAZFILE_DB : public LHAZFILE {
16
17public:
18 LHAZFILE_DB(const WSTR& name, const time_t& t, int icon, bool isdir);
19 LHAZFILE_DB(const WSTR& name, const WSTR& id, const time_t& t, int icon, bool isdir, LONGLONG size);
20 ‾LHAZFILE_DB(void);
21 //
22 const WSTR& GetId(void) const { return m_id; }
23 WSTR GetParent(void) const;
24 bool IsNewDir(void) const { return m_newdir; }
25
26private:
28 WSTR m_id;
29};
Definition lhazfile_db.h:15
‾LHAZFILE_DB(void)
Destructor
Definition lhazfile_db.cpp:40
bool m_newdir
Definition lhazfile_db.h:27
WSTR GetParent(void) const
GetParent
Definition lhazfile_db.cpp:47
const WSTR & GetId(void) const
Definition lhazfile_db.h:22
bool IsNewDir(void) const
Definition lhazfile_db.h:24
WSTR m_id
Definition lhazfile_db.h:28
Definition lhazfile.h:14