Skip to content

Commit

Permalink
Updated header
Browse files Browse the repository at this point in the history
  • Loading branch information
sadko4u committed Jul 16, 2024
1 parent 8d0493f commit 0e63400
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions include/lsp-plug.in/tk/widgets/specific/LedMeter.h
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,6 @@ namespace lsp
public:
static const w_class_t metadata;

private:
LedMeter & operator = (const LedMeter &);
LedMeter(const LedMeter &);

protected:
lltl::parray<LedMeterChannel> vVisible;
prop::WidgetList<LedMeterChannel> vItems;
Expand All @@ -83,8 +79,13 @@ namespace lsp

public:
explicit LedMeter(Display *dpy);
LedMeter(const LedMeter &) = delete;
LedMeter(LedMeter &&) = delete;
virtual ~LedMeter() override;

LedMeter & operator = (const LedMeter &) = delete;
LedMeter & operator = (LedMeter &&) = delete;

virtual status_t init() override;
virtual void destroy() override;

Expand Down

0 comments on commit 0e63400

Please sign in to comment.