18 lines
No EOL
459 B
C++
18 lines
No EOL
459 B
C++
#pragma once
|
|
|
|
#include "objects/annotation.h"
|
|
#include "objects/base/instance.h"
|
|
#include "objects/joint/jointinstance.h"
|
|
#include <memory>
|
|
|
|
class DEF_INST Weld : public JointInstance {
|
|
AUTOGEN_PREAMBLE
|
|
|
|
virtual void buildJoint() override;
|
|
public:
|
|
Weld();
|
|
~Weld();
|
|
|
|
static inline std::shared_ptr<Weld> New() { return std::make_shared<Weld>(); };
|
|
static inline std::shared_ptr<Instance> Create() { return std::make_shared<Weld>(); };
|
|
}; |