Disallow Marker copy construction.

git-svn-id: svn://localhost/ardour2/branches/3.0@9477 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2011-05-04 15:51:30 +00:00
parent d947f27faf
commit 69e8f4221c
1 changed files with 5 additions and 0 deletions

View File

@ -125,6 +125,11 @@ class Marker : public sigc::trackable
void reposition ();
void setup_line_x ();
void setup_name_display ();
private:
/* disallow copy construction */
Marker (Marker const &);
Marker & operator= (Marker const &);
};
class TempoMarker : public Marker