blob: 4092b241a2a6ca71fccb66d3de13c9ca4da32235 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
## Copyright (c) 2009 Openismus GmbH <http://www.openismus.com/>
##
## This file is part of libsigc++.
##
## libsigc++ 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.
##
## libsigc++ 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, see <http://www.gnu.org/licenses/>.
sigc_public_h = \
bind.h \
bind_return.h \
connection.h \
limit_reference.h \
member_method_trait.h \
reference_wrapper.h \
retype_return.h \
signal.h \
signal_base.h \
slot.h \
trackable.h \
tuple-utils/tuple_cdr.h \
tuple-utils/tuple_end.h \
tuple-utils/tuple_for_each.h \
tuple-utils/tuple_start.h \
tuple-utils/tuple_transform_each.h \
type_traits.h \
visit_each.h \
weak_raw_ptr.h \
adaptors/adapts.h \
adaptors/adaptor_base.h \
adaptors/adaptors.h \
adaptors/adaptor_trait.h \
adaptors/bind.h \
adaptors/bind_return.h \
adaptors/bound_argument.h \
adaptors/compose.h \
adaptors/exception_catch.h \
adaptors/hide.h \
adaptors/retype.h \
adaptors/track_obj.h \
adaptors/retype_return.h \
adaptors/tuple_visitor_visit_each.h \
functors/functor_trait.h \
functors/functors.h \
functors/mem_fun.h \
functors/ptr_fun.h \
functors/slot.h \
functors/slot_base.h
sigc_sources_cc = \
signal_base.cc \
trackable.cc \
connection.cc \
functors/slot_base.cc
|