diff options
author | Murray Cumming <murrayc@usa.net> | 2003-03-16 14:54:09 +0000 |
---|---|---|
committer | Murray Cumming <murrayc@src.gnome.org> | 2003-03-16 14:54:09 +0000 |
commit | 86447299841500d321fa22d97f8efaaacb3e6183 (patch) | |
tree | dd8ef73cccf441a3edd1fb25362524b490994e43 /sigc++/sigc++.h | |
parent | d9989607726d2cb43f40d62db0aa14f7b36b039c (diff) | |
download | sigc++-86447299841500d321fa22d97f8efaaacb3e6183.tar.gz |
Added sigc++/sigc++.h, like in libsigc++ 1.2 Added member_method example,
2003-03-16 Murray Cumming <murrayc@usa.net>
* Added sigc++/sigc++.h, like in libsigc++ 1.2
* examples: Added member_method example, which uses a class method
and which demonstrates disconnection.
Diffstat (limited to 'sigc++/sigc++.h')
-rw-r--r-- | sigc++/sigc++.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/sigc++/sigc++.h b/sigc++/sigc++.h new file mode 100644 index 0000000..2be349f --- /dev/null +++ b/sigc++/sigc++.h @@ -0,0 +1,30 @@ +/* + * Copyright 2003, The libsigc++ Development Team + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * + */ + +#ifndef SIGCXX_SIGCXX_H +#define SIGCXX_SIGCXX_H + +#include <sigc++/signal.h> +#include <sigc++/callof.h> +#include <sigc++/trackable.h> +#include <sigc++/adaptors/adaptors.h> +#include <sigc++/functors/functors.h> + +#endif /* SIGCXX_SIGCXX_H */ + |