how to make cpp header file 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: what is a header in c++
int x;
x = 42;
Example 3: c++ header files example
#ifndef TOOLS_hpp
#define TOOLS_hpp
#include<vector>
#include<iostream>
#include<fstream>
#include<string>
using std::ifstream;
using std::cout;
using std::cin;
using std::endl;
using std::cerr;
using std::vector;
using std::string;
inline vector<int> merge(const vector<int>&a,const vector<int>& b);
std::vector<int> sort(size_t start, size_t length, const std::vector<int>& vec);
#endif