X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Fregistrar.cpp;h=972de4b7b4329478925d8b117f747fcd2cb63c5a;hp=5a4d8903660fd74a14e28682634790878e404188;hb=bf0d26572edecc37d98aec715e14fbd71a8c0315;hpb=09988aee53a2bfef87fc887a434b4c78d6326c47 diff --git a/ginac/registrar.cpp b/ginac/registrar.cpp index 5a4d8903..972de4b7 100644 --- a/ginac/registrar.cpp +++ b/ginac/registrar.cpp @@ -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 @@ -20,22 +20,12 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#include +#include "registrar.h" + #include #include - -#include "registrar.h" +#include namespace GiNaC { -std::type_info const* 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