20 lines
396 B
C++
20 lines
396 B
C++
|
/**
|
||
|
* @file MeshOpearatorCommon.cpp
|
||
|
* @brief None
|
||
|
* @author 陈增辉 (3045316072@qq.com)
|
||
|
* @version 2.5.0
|
||
|
* @date 24-5-15
|
||
|
* @copyright Copyright (c) Since 2024 中科卫星应用研究院 All rights reserved.
|
||
|
*/
|
||
|
|
||
|
#include "MeshOpearatorCommon.h"
|
||
|
|
||
|
namespace MeshOpearator {
|
||
|
|
||
|
MeshOpearatorCommon::MeshOpearatorCommon(QObject* parent): QObject(parent)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
} // namespace MeshOpearator
|