]> www.ginac.de Git - ginac.git/blobdiff - ginac/registrar.cpp
Add support for Texinfo-5.0.
[ginac.git] / ginac / registrar.cpp
index 369b89420527a9d3773acbf0fefa090dee571ae1..972de4b7b4329478925d8b117f747fcd2cb63c5a 100644 (file)
@@ -3,7 +3,7 @@
  *  GiNaC's class registrar (for class basic and all classes derived from it). */
 
 /*
- *  GiNaC Copyright (C) 1999-2008 Johannes Gutenberg University Mainz, Germany
+ *  GiNaC Copyright (C) 1999-2011 Johannes Gutenberg University Mainz, Germany
  *
  *  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
  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
-#include <string>
+#include "registrar.h"
+
 #include <map>
 #include <stdexcept>
-
-#include "registrar.h"
+#include <string>
 
 namespace GiNaC {
 
-tinfo_t find_tinfo_key(const std::string &class_name)
-{
-       return registered_class_info::find(class_name)->options.get_id();
-}
-
-unarch_func find_unarch_func(const std::string &class_name)
-{
-       return registered_class_info::find(class_name)->options.get_unarch_func();
-}
-
 } // namespace GiNaC