Initial commit for class VLayoutDetail.

--HG--
branch : feature
This commit is contained in:
dismine 2015-01-02 16:14:28 +02:00
parent 68bf51c884
commit 67c93e2b5b
3 changed files with 75 additions and 2 deletions

View File

@ -3,8 +3,10 @@
HEADERS += \ HEADERS += \
$$PWD/stable.h \ $$PWD/stable.h \
$$PWD/vlayoutgenerator.h $$PWD/vlayoutgenerator.h \
$$PWD/vlayoutdetail.h
SOURCES += \ SOURCES += \
$$PWD/stable.cpp \ $$PWD/stable.cpp \
$$PWD/vlayoutgenerator.cpp $$PWD/vlayoutgenerator.cpp \
$$PWD/vlayoutdetail.cpp

View File

@ -0,0 +1,33 @@
/************************************************************************
**
** @file vlayoutdetail.cpp
** @author Roman Telezhynskyi <dismine(at)gmail.com>
** @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
** <https://bitbucket.org/dismine/valentina> 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 <http://www.gnu.org/licenses/>.
**
*************************************************************************/
#include "vlayoutdetail.h"
VLayoutDetail::VLayoutDetail()
{
}

View File

@ -0,0 +1,38 @@
/************************************************************************
**
** @file vlayoutdetail.h
** @author Roman Telezhynskyi <dismine(at)gmail.com>
** @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
** <https://bitbucket.org/dismine/valentina> 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 <http://www.gnu.org/licenses/>.
**
*************************************************************************/
#ifndef VLAYOUTDETAIL_H
#define VLAYOUTDETAIL_H
class VLayoutDetail
{
public:
VLayoutDetail();
};
#endif // VLAYOUTDETAIL_H