17 lines
223 B
C++
17 lines
223 B
C++
#pragma once
|
|
|
|
#include "InLineJoint.h"
|
|
|
|
namespace MbD {
|
|
class PointInLineJoint : public InLineJoint
|
|
{
|
|
//
|
|
public:
|
|
PointInLineJoint();
|
|
PointInLineJoint(const char* str);
|
|
void initializeGlobally() override;
|
|
|
|
};
|
|
}
|
|
|