Made GtkLumiera and WindowManager boost::noncopyable
This commit is contained in:
parent
6396323e9e
commit
ee6fac5914
2 changed files with 3 additions and 2 deletions
|
|
@ -31,6 +31,7 @@
|
|||
#include <gtkmm.h>
|
||||
#include <nobug.h>
|
||||
#include <vector>
|
||||
#include <boost/utility.hpp>
|
||||
|
||||
extern "C" {
|
||||
#include <gavl/gavltime.h>
|
||||
|
|
@ -91,7 +92,7 @@ static const gchar* AppAuthors[] = {
|
|||
/**
|
||||
* The main application class.
|
||||
*/
|
||||
class GtkLumiera
|
||||
class GtkLumiera : private boost::noncopyable
|
||||
{
|
||||
public:
|
||||
int main(int argc, char *argv[]);
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@ namespace gui {
|
|||
/**
|
||||
* The centralised manager of all lumiera-gui's windows.
|
||||
**/
|
||||
class WindowManager
|
||||
class WindowManager : private boost::noncopyable
|
||||
{
|
||||
public:
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in a new issue