Lhaz
読み取り中…
検索中…
一致する文字列を見つけられません
lhazexthist.h
[詳解]
1/*==========================================================================*/
2/* Lhaz History of folder extracted to chitora48@gmail.com */
3/*==========================================================================*/
4#pragma once
5
6#include "altstr.hpp"
7#include <vector>
8
9using namespace std;
10
12public:
13 static int GetMax(void) { return LHAZEXTHISTMAX; };
14 static int GetHistMax(void) { return HistMax; };
15 //
16 LHAZEXTHIST(void);
17 //
18 size_t Size(void) { return History.size(); };
19 void Add(const WSTR& s);
20 WSTR Get(int idx) { return History[idx]; };
21 void Clear(void) { History.clear(); };
22 void Save(void);
23 void SetHistMax(int max);
24
25private:
26 static const int LHAZEXTHISTMAX;
27 static const LPTSTR VALUENAME;
28 static int HistMax;
29 //
30 vector<WSTR> History;
31
32};
Definition lhazexthist.h:11
void Add(const WSTR &s)
Definition lhazexthist.cpp:25
static const LPTSTR VALUENAME
Definition lhazexthist.h:27
static int GetHistMax(void)
Definition lhazexthist.h:14
LHAZEXTHIST(void)
Definition lhazexthist.cpp:16
static int HistMax
Definition lhazexthist.h:28
WSTR Get(int idx)
Definition lhazexthist.h:20
static const int LHAZEXTHISTMAX
Definition lhazexthist.h:26
void Clear(void)
Definition lhazexthist.h:21
vector< WSTR > History
Definition lhazexthist.h:30
size_t Size(void)
Definition lhazexthist.h:18
void SetHistMax(int max)
Definition lhazexthist.cpp:46
static int GetMax(void)
Definition lhazexthist.h:13
void Save(void)
Definition lhazexthist.cpp:60