encfs/vendor/github.com/muflihun/easyloggingpp/samples/wxWidgets/wxstring.cpp

10 lines
162 B
C++
Raw Normal View History

#include <wx/string.h>
#include "easylogging++.h"
INITIALIZE_EASYLOGGINGPP
int main() {
wxString str = "This is a simple wxString";
LOG(INFO) << str;
}