Made GtkLumiera and WindowManager boost::noncopyable

This commit is contained in:
Joel Holdsworth 2008-10-20 19:19:06 +01:00
parent 6396323e9e
commit ee6fac5914
2 changed files with 3 additions and 2 deletions

View file

@ -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[]);

View file

@ -35,7 +35,7 @@ namespace gui {
/**
* The centralised manager of all lumiera-gui's windows.
**/
class WindowManager
class WindowManager : private boost::noncopyable
{
public:
/**