diff options
Diffstat (limited to 'lout/object.hh')
-rw-r--r-- | lout/object.hh | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/lout/object.hh b/lout/object.hh index 9cacff77..c9fa0458 100644 --- a/lout/object.hh +++ b/lout/object.hh @@ -1,3 +1,23 @@ +/* + * Dillo Widget + * + * Copyright 2005-2007 Sebastian Geerken <sgeerken@dillo.org> + * Copyright 2025 Rodrigo Arias Mallo <rodarima@gmail.com> + * + * 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 3 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, see <http://www.gnu.org/licenses/>. + */ + #ifndef __LOUT_OBJECT_HH__ #define __LOUT_OBJECT_HH__ @@ -29,7 +49,7 @@ public: virtual int hashValue(); virtual Object *clone(); virtual void intoStringBuffer(misc::StringBuffer *sb); - const char *toString(); + char *toString(); virtual size_t sizeOf(); }; |