/* atkmm - a C++ wrapper for the GLib toolkit * * Copyright 2002 The gtkmm 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef _ATKMM_H #define _ATKMM_H /** @mainpage atkmm Reference Manual * * @section description Description * * atkmm is the official C++ interface for the * ATK * accessibility toolkit library. It may be used, for instance, by user interfaces * implemented with gtkmm-3.0. * * @section basics Basic usage * * Include the atkmm header: * @code * #include * @endcode * This includes every header installed by atkmm, so can slow down * compilation, but suffices for this simple example. Assuming that your * program source file is @c program.cc, compile it with: * @code * g++ program.cc -o program `pkg-config --cflags --libs atkmm-1.6` * @endcode * If your version of g++ is not C++11-compliant by default, * add the @c -std=c++11 option. * * If you use Meson, include the following * in @c meson.build: * @code * atkmm_dep = dependency('atkmm-1.6') * program_name = 'program' * cpp_sources = [ 'program.cc' ] * executable(program_name, * cpp_sources, * dependencies: [ atkmm_dep ] * ) * @endcode * * Alternatively, if using autoconf, use the following in @c configure.ac: * @code * PKG_CHECK_MODULES([ATKMM], [atkmm-1.6]) * @endcode * Then use the generated @c ATKMM_CFLAGS and @c ATKMM_LIBS variables in * the project @c Makefile.am files. For example: * @code * program_CPPFLAGS = $(ATKMM_CFLAGS) * program_LDADD = $(ATKMM_LIBS) * @endcode */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #endif /* _ATKMM_H */