#ifndef ICONS_H_B95159A6 #define ICONS_H_B95159A6 #include #ifndef WX_PRECOMP #include #endif #include #include #include class IconCache { public: const wxBitmap* GetIcon(const std::string& filename, wxSize size); private: std::map, wxBitmap> icons_; }; void SetTheIconCache(IconCache* instance); IconCache& GetTheIconCache(); #endif /* end of include guard: ICONS_H_B95159A6 */