// Purpose: Implementation of wxMarkupParser.
// Author: Vadim Zeitlin
// Created: 2011-02-16
-// RCS-ID: $Id: $
+// RCS-ID: $Id$
// Copyright: (c) 2011 Vadim Zeitlin <vadim@wxwidgets.org>
// Licence: wxWindows licence
///////////////////////////////////////////////////////////////////////////////
#pragma hdrstop
#endif
+#if wxUSE_MARKUP
+
#ifndef WX_PRECOMP
-#endif // WX_PRECOMP
+ #include "wx/log.h"
+#endif
#include "wx/private/markupparser.h"
m_output.OnText(current);
current.clear();
}
-
+#if wxUSE_LOG_DEBUG
// Remember the tag starting position for the error
// messages.
const size_t pos = it - text.begin();
-
+#endif
bool start = true;
if ( ++it != end && *it == '/' )
{
return output.GetText();
}
+
+#endif // wxUSE_MARKUP