From be11f60acfc7a9283ab038b4a1cd25e5e6882cc7 Mon Sep 17 00:00:00 2001 From: Florian Jung Date: Thu, 30 Dec 2010 16:23:59 +0100 Subject: Note inherits from NoteSkel -- DOES NOT WORK! The program compiles well, but as soon as a note is created, it exits, because a pure virtual method is called in NoteSkel's ctor (which is called before Note's ctor) which tries to call a function which is implemented in Note, but not in NoteSkel --- synth/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'synth/Makefile') diff --git a/synth/Makefile b/synth/Makefile index 3870262..791e62a 100644 --- a/synth/Makefile +++ b/synth/Makefile @@ -2,7 +2,7 @@ CXX=g++ CXXFLAGS=-Wall -g LDFLAGS=-lm `pkg-config --cflags --libs jack` -OBJ=channel.o cli.o defines.o envelope.o filter.o globals.o jack.o load.o main.o note.o parser.o programs.o readwave.o util.o +OBJ=channel.o cli.o defines.o envelope.o filter.o globals.o jack.o load.o main.o note.o note_skel.o parser.o programs.o readwave.o util.o BIN=synth DEPENDFILE = .depend -- cgit v1.2.3