Disable copy/assignment constructors

wilder-portage
Kurt Hindenburg 11 years ago
parent c5909f5819
commit daa7d02363
  1. 3
      src/Screen.h

@ -78,6 +78,9 @@ public:
Screen(int lines, int columns);
~Screen();
Screen(const Screen&) = delete;
Screen& operator=(const Screen&) = delete;
// VT100/2 Operations
// Cursor Movement

Loading…
Cancel
Save