This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is a recursive makefile- do not use in production | |
# convert to canonical make chain when time permits | |
# | |
# recursive file search | |
rfilelist=$(wildcard $1$2) $(foreach d,$(wildcard $1*),$(call rfilelist,$d/,$2)) | |
# the name of program | |
TARGET = sigslot | |
CC = g++ | |
# C++ compiler flags |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef SIGNALS_H | |
#define SIGNALS_H | |
#include <functional> | |
#include <list> | |
#include <memory> | |
template <typename... Args> | |
class ConnectionItem | |
{ |