summaryrefslogtreecommitdiff
path: root/src/diagramobject.cpp
diff options
context:
space:
mode:
authorLukáš Lalinský <lalinsky@gmail.com>2008-12-07 01:05:09 +0100
committerLukáš Lalinský <lalinsky@gmail.com>2008-12-07 01:05:09 +0100
commit364531ec14761f07b22dbec6461376aad81159f6 (patch)
treed12861cb31805dfb551a9b1361a5c8513bbfd7a3 /src/diagramobject.cpp
parent67ee0e1c5b11cc2a4c70018f524c9ce00da30b60 (diff)
downloaddbmodel-364531ec14761f07b22dbec6461376aad81159f6.tar.xz
Move source code to src/ and add translation support
Diffstat (limited to 'src/diagramobject.cpp')
-rw-r--r--src/diagramobject.cpp22
1 files changed, 22 insertions, 0 deletions
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)
+{
+}