Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/blahtexml/source/BlahtexCore/Interface.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'blahtexml/source/BlahtexCore/Interface.cpp')
-rw-r--r--blahtexml/source/BlahtexCore/Interface.cpp63
1 files changed, 63 insertions, 0 deletions
diff --git a/blahtexml/source/BlahtexCore/Interface.cpp b/blahtexml/source/BlahtexCore/Interface.cpp
new file mode 100644
index 0000000..e63be77
--- /dev/null
+++ b/blahtexml/source/BlahtexCore/Interface.cpp
@@ -0,0 +1,63 @@
+// File "Interface.cpp"
+//
+// blahtex (version 0.4.4)
+// a TeX to MathML converter designed with MediaWiki in mind
+// Copyright (C) 2006, David Harvey
+//
+// blahtexml (version 0.5)
+// Copyright (C) 2007-2008, Gilles Van Assche
+//
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+
+#include <sstream>
+#include "Interface.h"
+#include "MathmlNode.h"
+
+using namespace std;
+
+namespace blahtex
+{
+
+void Interface::ProcessInput(const wstring& input)
+{
+ mManager.reset(new Manager);
+ mManager->ProcessInput(input, mTexvcCompatibility);
+}
+
+wstring Interface::GetMathml()
+{
+ wostringstream output;
+ auto_ptr<MathmlNode> root = mManager->GenerateMathml(mMathmlOptions);
+ root->Print(output, mEncodingOptions, mIndented);
+ return output.str();
+}
+
+wstring Interface::GetPurifiedTex()
+{
+ return mManager->GeneratePurifiedTex(mPurifiedTexOptions);
+}
+
+#ifdef BLAHTEXML_USING_XERCES
+void Interface::PrintAsSAX2(ContentHandler& sax, const wstring& prefix, bool ignoreFirstmrow) const
+{
+ wostringstream output;
+ auto_ptr<MathmlNode> root = mManager->GenerateMathml(mMathmlOptions);
+ root->PrintAsSAX2(sax, prefix, ignoreFirstmrow);
+}
+#endif
+
+}
+
+// end of file @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@