使用C或C ++进行编码时,我应该在哪里#include
?
callback.h:
#ifndef _CALLBACK_H_
#define _CALLBACK_H_
#include <sndfile.h>
#include "main.h"
void on_button_apply_clicked(GtkButton* button, struct user_data_s* data);
void on_button_cancel_clicked(GtkButton* button, struct user_data_s* data);
#endif
callback.c:
#include <stdlib.h>
#include <math.h>
#include "config.h"
#include "callback.h"
#include "play.h"
void on_button_apply_clicked(GtkButton* button, struct user_data_s* data) {
gint page;
page = gtk_notebook_get_current_page(GTK_NOTEBOOK(data->notebook));
...
应该全部包含在.h或.c / .cpp中,还是像我在此处所做的那样都包含在其中?
2
让我来扭转这个局面,问:什么是你的决定把sndfile.h和main.h在callback.h标准是什么?
—
Owen S.