what is header files in c++ code example
Example 1: what is a header in c++
#ifndef MY_CLASS_H
#define MY_CLASS_H
namespace N
{
class my_class
{
public:
void do_something();
};
}
#endif
Example 2: c++ include header
#include "headerfile.h"
Example 3: c++ header files
class vec2 {
public:
void printVec();
float x, y;
}
#include "vec2.hpp"
void vec2::printVec() {
std::cout << x << y << std::endl;
}
Example 4: what is a header in c++
int x;
x = 42;
Example 5: including cpp header file in c++
#include "enter_name_here.cpp"