summaryrefslogtreecommitdiffstats
path: root/addon/xmlread/strx.h
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2000-07-30 13:58:29 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2000-07-30 13:58:29 (GMT)
commit3876f92c80e9cc62af30916f0ccdeb83cdc2ff05 (patch)
tree2d71d4688e381dc8e0c968d120b25fdd0763c27e /addon/xmlread/strx.h
parent7295388a3c6b3a12a77dc7a56862333c97e4ccb6 (diff)
downloadDoxygen-3876f92c80e9cc62af30916f0ccdeb83cdc2ff05.zip
Doxygen-3876f92c80e9cc62af30916f0ccdeb83cdc2ff05.tar.gz
Doxygen-3876f92c80e9cc62af30916f0ccdeb83cdc2ff05.tar.bz2
Release-1.2.0-20000730
Diffstat (limited to 'addon/xmlread/strx.h')
-rw-r--r--addon/xmlread/strx.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/addon/xmlread/strx.h b/addon/xmlread/strx.h
new file mode 100644
index 0000000..ee58791
--- /dev/null
+++ b/addon/xmlread/strx.h
@@ -0,0 +1,24 @@
+#ifndef _STRX_H
+#define _STRX_H
+
+// ---------------------------------------------------------------------------
+// Includes for all the program files to see
+// ---------------------------------------------------------------------------
+#include "qtbc.h"
+#include <iostream.h>
+
+/*!
+ * This is a simple wrapper class around QCString that lets us do easy
+ * trancoding of XMLCh data to local code page for display.
+ */
+class StrX : public QCString
+{
+ public:
+ /*! Constructor */
+ StrX(const XMLCh* const toTranscode) :
+ QCString(XMLString::transcode(toTranscode)) {}
+ /*! Destructor */
+ ~StrX() {}
+};
+
+#endif