blob: b4cf2c773cd67854d207a6b7e3792cbef5ca1fa0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/*
* Building this using:
g++ `pkg-config --cflags sigc++-2.0` sigcpp_test.cpp
Results in an error.
* */
#include <stddef.h>
#include <string>
#include <sigc++/signal.h>
int main()
{
return 0;
}
|