add missing stdlib import

wx_Treebook uses std::function which is not defined (at least) when
using wxWidgets 3.0.5.1. Fix this by adding the import
This commit is contained in:
Hendrik v. Raven 2023-07-10 12:12:31 +02:00 committed by Ian McInerney
parent 3ba7e7e993
commit 7302df8be3
1 changed files with 1 additions and 0 deletions

View File

@ -24,6 +24,7 @@
#ifndef WX_TREEBOOK_H
#define WX_TREEBOOK_H
#include <functional>
#include <wx/treebook.h>
class WX_TREEBOOK : public wxTreebook