From 67c93e2b5bced2213b60b625671ecde3a2505311 Mon Sep 17 00:00:00 2001 From: dismine Date: Fri, 2 Jan 2015 16:14:28 +0200 Subject: [PATCH] Initial commit for class VLayoutDetail. --HG-- branch : feature --- src/libs/vlayout/vlayout.pri | 6 +++-- src/libs/vlayout/vlayoutdetail.cpp | 33 ++++++++++++++++++++++++++ src/libs/vlayout/vlayoutdetail.h | 38 ++++++++++++++++++++++++++++++ 3 files changed, 75 insertions(+), 2 deletions(-) create mode 100644 src/libs/vlayout/vlayoutdetail.cpp create mode 100644 src/libs/vlayout/vlayoutdetail.h diff --git a/src/libs/vlayout/vlayout.pri b/src/libs/vlayout/vlayout.pri index 5f07bede4..0bd4da172 100644 --- a/src/libs/vlayout/vlayout.pri +++ b/src/libs/vlayout/vlayout.pri @@ -3,8 +3,10 @@ HEADERS += \ $$PWD/stable.h \ - $$PWD/vlayoutgenerator.h + $$PWD/vlayoutgenerator.h \ + $$PWD/vlayoutdetail.h SOURCES += \ $$PWD/stable.cpp \ - $$PWD/vlayoutgenerator.cpp + $$PWD/vlayoutgenerator.cpp \ + $$PWD/vlayoutdetail.cpp diff --git a/src/libs/vlayout/vlayoutdetail.cpp b/src/libs/vlayout/vlayoutdetail.cpp new file mode 100644 index 000000000..08d9f0f40 --- /dev/null +++ b/src/libs/vlayout/vlayoutdetail.cpp @@ -0,0 +1,33 @@ +/************************************************************************ + ** + ** @file vlayoutdetail.cpp + ** @author Roman Telezhynskyi + ** @date 2 1, 2015 + ** + ** @brief + ** @copyright + ** This source code is part of the Valentine project, a pattern making + ** program, whose allow create and modeling patterns of clothing. + ** Copyright (C) 2015 Valentina project + ** All Rights Reserved. + ** + ** Valentina 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. + ** + ** Valentina 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 Valentina. If not, see . + ** + *************************************************************************/ + +#include "vlayoutdetail.h" + +VLayoutDetail::VLayoutDetail() +{ +} diff --git a/src/libs/vlayout/vlayoutdetail.h b/src/libs/vlayout/vlayoutdetail.h new file mode 100644 index 000000000..7aded6536 --- /dev/null +++ b/src/libs/vlayout/vlayoutdetail.h @@ -0,0 +1,38 @@ +/************************************************************************ + ** + ** @file vlayoutdetail.h + ** @author Roman Telezhynskyi + ** @date 2 1, 2015 + ** + ** @brief + ** @copyright + ** This source code is part of the Valentine project, a pattern making + ** program, whose allow create and modeling patterns of clothing. + ** Copyright (C) 2015 Valentina project + ** All Rights Reserved. + ** + ** Valentina 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. + ** + ** Valentina 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 Valentina. If not, see . + ** + *************************************************************************/ + +#ifndef VLAYOUTDETAIL_H +#define VLAYOUTDETAIL_H + +class VLayoutDetail +{ +public: + VLayoutDetail(); +}; + +#endif // VLAYOUTDETAIL_H