From 364531ec14761f07b22dbec6461376aad81159f6 Mon Sep 17 00:00:00 2001 From: Lukáš Lalinský Date: Sun, 7 Dec 2008 01:05:09 +0100 Subject: Move source code to src/ and add translation support --- src/diagramobject.cpp | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 src/diagramobject.cpp (limited to 'src/diagramobject.cpp') diff --git a/src/diagramobject.cpp b/src/diagramobject.cpp new file mode 100644 index 0000000..8b0d5b3 --- /dev/null +++ b/src/diagramobject.cpp @@ -0,0 +1,22 @@ +// Copyright (C) 2008 Lukas Lalinsky +// +// 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 2 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, write to the Free Software Foundation, Inc., +// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +#include "diagramobject.h" + +DiagramObject::DiagramObject(DiagramItem *parent) + : DiagramItem(parent) +{ +} -- cgit v1.2.3-54-g00ecf