From c71d80de34d26b32f6f8711419c494c0a77a1888 Mon Sep 17 00:00:00 2001 From: compudj Date: Thu, 29 May 2003 15:42:28 +0000 Subject: [PATCH] header usage fix git-svn-id: http://ltt.polymtl.ca/svn@32 04897980-b3bd-0310-b5e0-8ef037075253 --- ltt/branches/poly/lttv/lttv.h | 2 ++ ltt/branches/poly/lttv/main.c | 5 ++++- ltt/branches/poly/lttv/option.c | 4 +++- ltt/branches/poly/lttv/trace.h | 2 ++ 4 files changed, 11 insertions(+), 2 deletions(-) diff --git a/ltt/branches/poly/lttv/lttv.h b/ltt/branches/poly/lttv/lttv.h index 26583850..ad9f3044 100644 --- a/ltt/branches/poly/lttv/lttv.h +++ b/ltt/branches/poly/lttv/lttv.h @@ -1,6 +1,8 @@ #ifndef LTTV_H #define LTTV_H +#include "attribute.h" + /* Initial draft by Michel Dagenais May 2003 * Reworked by Mathieu Desnoyers, May 2003 */ diff --git a/ltt/branches/poly/lttv/main.c b/ltt/branches/poly/lttv/main.c index b484bbc1..2ec66f74 100644 --- a/ltt/branches/poly/lttv/main.c +++ b/ltt/branches/poly/lttv/main.c @@ -1,7 +1,10 @@ #include "lttv.h" #include "trace.h" - +#include "attribute.h" +#include "hook.h" +#include "option.h" +#include "module.h" /* The main program maintains a few central data structures and relies on modules for the rest. These data structures may be accessed by modules diff --git a/ltt/branches/poly/lttv/option.c b/ltt/branches/poly/lttv/option.c index aa8656f8..fc5bc26f 100644 --- a/ltt/branches/poly/lttv/option.c +++ b/ltt/branches/poly/lttv/option.c @@ -1,5 +1,7 @@ -#include +#include "lttv.h" +#include "option.h" +#include "hook.h" #include /* Extensible array of popt command line options. Modules add options as diff --git a/ltt/branches/poly/lttv/trace.h b/ltt/branches/poly/lttv/trace.h index bbe6c497..9e33e175 100644 --- a/ltt/branches/poly/lttv/trace.h +++ b/ltt/branches/poly/lttv/trace.h @@ -1,6 +1,8 @@ #ifndef TRACE_H #define TRACE_H +#include "attribute.h" + /* A trace is a sequence of events gathered in the same tracing session. The events may be stored in several tracefiles in the same directory. A trace set is defined when several traces are to be analyzed together, -- 2.34.1