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