From 99f4140468cdc9a9c592658e777f900718846370 Mon Sep 17 00:00:00 2001 From: Josh Coalson Date: Wed, 29 May 2002 05:54:52 +0000 Subject: [PATCH] add encoder.h and decoder.h --- include/FLAC++/Makefile.am | 2 ++ include/FLAC++/all.h | 2 ++ 2 files changed, 4 insertions(+) diff --git a/include/FLAC++/Makefile.am b/include/FLAC++/Makefile.am index 3e927393..9830b2ba 100644 --- a/include/FLAC++/Makefile.am +++ b/include/FLAC++/Makefile.am @@ -20,4 +20,6 @@ includedir = ${prefix}/include/FLAC++ include_HEADERS = \ all.h \ + decoder.h \ + encoder.h \ metadata.h diff --git a/include/FLAC++/all.h b/include/FLAC++/all.h index d74bc65f..02c43b40 100644 --- a/include/FLAC++/all.h +++ b/include/FLAC++/all.h @@ -20,6 +20,8 @@ #ifndef FLACPP__ALL_H #define FLACPP__ALL_H +#include "encoder.h" +#include "decoder.h" #include "metadata.h" #endif