LibreCAD
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
addlinepatternevent.h
Go to the documentation of this file.
1 #pragma once
2 
4 
5 namespace lc {
11  public:
16  AddLinePatternEvent(const DxfLinePatternByValue_CSPtr linePattern) : _linePattern(linePattern) {
17  }
22  const DxfLinePatternByValue_CSPtr linePattern() const {
23  return _linePattern;
24  }
25 
26  private:
27  const DxfLinePatternByValue_CSPtr _linePattern;
28  };
29 }
Definition: cadentity.h:12
AddLinePatternEvent(const DxfLinePatternByValue_CSPtr linePattern)
Construct an Add Line Pattern Event.
const DxfLinePatternByValue_CSPtr linePattern() const
Returns the line pattern.
const DxfLinePatternByValue_CSPtr _linePattern
Event that gets emitted when a new line pattern was added to the document.