#ifndef _WX_HTMLTAG_H_
#define _WX_HTMLTAG_H_
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(__APPLE__)
#pragma interface "htmltag.h"
#endif
// Finds parameters for tag starting at at and fills the variables
void QueryTag(int at, int* end1, int* end2);
+
+ DECLARE_NO_COPY_CLASS(wxHtmlTagsCache)
};
// (like sscanf() does)
// NOTE: unlike scanf family, this function only accepts
// *one* parameter !
- int ScanParam(const wxString& par, wxChar *format, void *param) const;
+ int ScanParam(const wxString& par, const wxChar *format, void *param) const;
// Returns string containing all params.
wxString GetAllParams() const;
wxHtmlTag *m_Prev;
wxHtmlTag *m_FirstChild, *m_LastChild;
wxHtmlTag *m_Parent;
+
+ DECLARE_NO_COPY_CLASS(wxHtmlTag)
};