X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=c%2B%2B%2Fcursesapp.h;h=7e995d2e39c63abdcf045c1216fbdf540719806d;hp=3eb25d031191626d06995cf2a7ac98da313077f3;hb=e460260b42bbc6a2c65bca58372d6fda19434fe8;hpb=46722468f47c2b77b3987729b4bcf2321cccfd01 diff --git a/c++/cursesapp.h b/c++/cursesapp.h index 3eb25d03..7e995d2e 100644 --- a/c++/cursesapp.h +++ b/c++/cursesapp.h @@ -1,6 +1,6 @@ // * This makes emacs happy -*-Mode: C++;-*- /**************************************************************************** - * Copyright (c) 1998,2000 Free Software Foundation, Inc. * + * Copyright (c) 1998-2003,2005 Free Software Foundation, Inc. * * * * Permission is hereby granted, free of charge, to any person obtaining a * * copy of this software and associated documentation files (the * @@ -29,10 +29,9 @@ /**************************************************************************** * Author: Juergen Pfeifer, 1997 * - * Contact: http://www.familiepfeifer.de/Contact.aspx?Lang=en * ****************************************************************************/ -// $Id: cursesapp.h,v 1.8 2002/07/06 15:47:52 juergen Exp $ +// $Id: cursesapp.h,v 1.11 2005/05/28 21:57:44 tom Exp $ #ifndef NCURSES_CURSESAPP_H_incl #define NCURSES_CURSESAPP_H_incl @@ -87,11 +86,24 @@ protected: // be the exit value of your application. virtual int run() = 0; - // The constructor is protected, so you may use it in your derived // class constructor. The argument tells whether or not you want colors. NCursesApplication(bool wantColors = FALSE); + NCursesApplication& operator=(const NCursesApplication& rhs) + { + if (this != &rhs) { + *this = rhs; + } + return *this; + } + + NCursesApplication(const NCursesApplication& rhs) + : b_Colors(rhs.b_Colors), + Root_Window(rhs.Root_Window) + { + } + public: virtual ~NCursesApplication(); @@ -161,4 +173,4 @@ public: }; -#endif // NCURSES_CURSESAPP_H_incl +#endif /* NCURSES_CURSESAPP_H_incl */