X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Fregistrar.h;h=200adbb8360eaa242fbb3c27fe4ce9e524eee999;hp=5c97e6d176c1c2b6f20dfa481465178879d47f53;hb=74bc832973cda4204e349396c9f4f7d056f16366;hpb=dfaa3383381a37f871cdd8ae7b19db579dddd83d diff --git a/ginac/registrar.h b/ginac/registrar.h index 5c97e6d1..200adbb8 100644 --- a/ginac/registrar.h +++ b/ginac/registrar.h @@ -3,7 +3,7 @@ * GiNaC's class registrar (for class basic and all classes derived from it). */ /* - * GiNaC Copyright (C) 1999-2015 Johannes Gutenberg University Mainz, Germany + * GiNaC Copyright (C) 1999-2020 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 @@ -125,43 +125,54 @@ private: typedef class_info registered_class_info; - -/** Primary macro for inclusion in the declaration of each registered class. */ -#define GINAC_DECLARE_REGISTERED_CLASS_NO_CTORS(classname, supername) \ -public: \ - typedef supername inherited; \ +/** Common part of GINAC_DECLARE_REGISTERED_CLASS_NO_CTORS and GINAC_DECLARE_REGISTERED_CLASS. */ +#define GINAC_DECLARE_REGISTERED_CLASS_COMMON(classname) \ private: \ static GiNaC::registered_class_info reg_info; \ public: \ static GiNaC::registered_class_info &get_class_info_static() { return reg_info; } \ - virtual const GiNaC::registered_class_info &get_class_info() const { return classname::get_class_info_static(); } \ - virtual GiNaC::registered_class_info &get_class_info() { return classname::get_class_info_static(); } \ - virtual const char *class_name() const { return classname::get_class_info_static().options.get_name(); } \ class visitor { \ public: \ virtual void visit(const classname &) = 0; \ virtual ~visitor() {}; \ }; +/** Primary macro for inclusion in the declaration of each registered class. */ +#define GINAC_DECLARE_REGISTERED_CLASS_NO_CTORS(classname, supername) \ + GINAC_DECLARE_REGISTERED_CLASS_COMMON(classname) \ + typedef supername inherited; \ + virtual const GiNaC::registered_class_info &get_class_info() const { return classname::get_class_info_static(); } \ + virtual GiNaC::registered_class_info &get_class_info() { return classname::get_class_info_static(); } \ + virtual const char *class_name() const { return classname::get_class_info_static().options.get_name(); } \ +private: + /** Macro for inclusion in the declaration of each registered class. * It declares some functions that are common to all classes derived * from 'basic' as well as all required stuff for the GiNaC class * registry (mainly needed for archiving). */ #define GINAC_DECLARE_REGISTERED_CLASS(classname, supername) \ - GINAC_DECLARE_REGISTERED_CLASS_NO_CTORS(classname, supername) \ -public: \ + GINAC_DECLARE_REGISTERED_CLASS_COMMON(classname) \ + template friend B & dynallocate(Args &&... args); \ + typedef supername inherited; \ classname(); \ - virtual classname * duplicate() const { return new classname(*this); } \ + classname * duplicate() const override { \ + classname * bp = new classname(*this); \ + bp->setflag(GiNaC::status_flags::dynallocated); \ + return bp; \ + } \ \ - virtual void accept(GiNaC::visitor & v) const \ + void accept(GiNaC::visitor & v) const override \ { \ if (visitor *p = dynamic_cast(&v)) \ p->visit(*this); \ else \ inherited::accept(v); \ } \ + const GiNaC::registered_class_info &get_class_info() const override { return classname::get_class_info_static(); } \ + GiNaC::registered_class_info &get_class_info() override { return classname::get_class_info_static(); } \ + const char *class_name() const override { return classname::get_class_info_static().options.get_name(); } \ protected: \ - virtual int compare_same_type(const GiNaC::basic & other) const; \ + int compare_same_type(const GiNaC::basic & other) const override; \ private: