mirror of
https://github.com/vgough/encfs.git
synced 2024-12-04 22:00:39 +01:00
5f0806c5cc
git-vendor-name: easylogging git-vendor-dir: vendor/github.com/muflihun/easyloggingpp git-vendor-repository: https://github.com/muflihun/easyloggingpp git-vendor-ref: master
18 lines
281 B
C++
18 lines
281 B
C++
#include <wx/hashmap.h>
|
|
#include "easylogging++.h"
|
|
|
|
INITIALIZE_EASYLOGGINGPP
|
|
|
|
WX_DECLARE_STRING_HASH_MAP( wxString, MyHashMap);
|
|
|
|
ELPP_WX_HASH_MAP_ENABLED(MyHashMap)
|
|
|
|
int main() {
|
|
|
|
MyHashMap h1;
|
|
h1["Batman"] = "Joker";
|
|
h1["Spiderman"] = "Venom";
|
|
|
|
LOG(INFO) << h1;
|
|
}
|