-wxImageList::wxImageList( int width, int height, bool WXUNUSED(mask), int WXUNUSED(initialCount) )
+IMPLEMENT_DYNAMIC_CLASS(wxImageList, wxGenericImageList)
+#endif
+
+wxGenericImageList::wxGenericImageList( int width, int height, bool mask, int initialCount )
+{
+ (void)Create(width, height, mask, initialCount);
+}
+
+wxGenericImageList::~wxGenericImageList()
+{
+ (void)RemoveAll();
+}
+
+int wxGenericImageList::GetImageCount() const
+{
+ return m_images.GetCount();
+}
+
+bool wxGenericImageList::Create( int width, int height, bool WXUNUSED(mask), int WXUNUSED(initialCount) )