MCPcopy Create free account
hub / github.com/bailey27/cppcryptfs / RecentItems

Class RecentItems

cppcryptfs/ui/RecentItems.h:31–48  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

29#pragma once
30
31class RecentItems
32{
33private:
34 CString m_section;
35 CString m_base;
36 int m_count;
37private:
38 void AppendIndex(CString& str, int index);
39public:
40 // disallow copying
41 RecentItems(RecentItems const&) = delete;
42 void operator=(RecentItems const&) = delete;
43
44 RecentItems(LPCTSTR section, LPCTSTR base, int count);
45 void Add(LPCTSTR item);
46 void Populate(CString *items, LPCTSTR initial_default = NULL);
47 virtual ~RecentItems(void);
48};

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected