Lhaz
読み取り中…
検索中…
一致する文字列を見つけられません
lhazdll.h
[詳解]
1/*==========================================================================*/
2/* Lhaz Shell Extension chitora48@gmail.com */
3/*==========================================================================*/
4#pragma once
5
6#include "mystr.h"
7
8class SEFILE {
9
10public:
11 SEFILE(const MYSTR& file);
12 bool IsArchive(void) const { return Archive; }
13 const MYSTR& GetFileName(void) const { return FileName; }
14
15private:
16 bool Archive;
17 MYSTR FileName;
18
19};
Definition lhazdll.h:8
bool IsArchive(void) const
Definition lhazdll.h:12
bool Archive
Definition lhazdll.h:16
const MYSTR & GetFileName(void) const
Definition lhazdll.h:13
MYSTR FileName
Definition lhazdll.h:17