C++ C++14 unique_ptrをvectorに格納するときの注意点 C++14です。std::vectorに、unique_ptrを入れたいときは#include <vector>#include <memory>std::unique_ptr<SOMETYPE> ptr = std::make_uniqu... 2017.03.06 C++
wxWidgets wxWidgets Zipファイルから特定のエントリのInputStreamを取得する 最近はwxPythonが少し遅く感じたので、wxPythonの本家、wxWidgetsで書き直してる。wxWidgetsの公式:wxWidgets: Cross-Platform GUI Libraryzipファイルから、特定のコンテンツを... 2017.02.21 wxWidgets