]> www.ginac.de Git - ginac.git/blobdiff - ginac/symbol.h
Convert some more ctors from copying to moving STL containers.
[ginac.git] / ginac / symbol.h
index 6036318ffacb3a8d2f0cb279b4ece30abf1bc470..3a8505c05cbcb25756dd0c5214466bffb250d354 100644 (file)
@@ -3,7 +3,7 @@
  *  Interface to GiNaC's symbolic objects. */
 
 /*
- *  GiNaC Copyright (C) 1999-2011 Johannes Gutenberg University Mainz, Germany
+ *  GiNaC Copyright (C) 1999-2015 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
@@ -69,6 +69,7 @@ protected:
        // non-virtual functions in this class
 public:
        void set_name(const std::string & n) { name = n; }
+       void set_TeX_name(const std::string & n) { TeX_name = n; }
        std::string get_name() const;
        virtual unsigned get_domain() const { return domain::complex; }
 protected: