Exemplo de uso do #pragma once
-------------------------------------------------
File “grandfather.h”
#pragma once
struct foo {
int member;
};
-------------------------------------------------
-------------------------------------------------
File “father.h”
#include "grandfather.h"
-------------------------------------------------
-------------------------------------------------
File “child.c”
#include "grandfather.h"
#include "father.h"
-------------------------------------------------
Exemplo do uso do #ifndef
#ifndef TIME_H
#define TIME_H
//defina o header file "Nomearq.h"
//Código
#endif
Nenhum comentário:
Postar um comentário