header file in cpp code example
Example 1: c++ header files
class vec2 {
public:
void printVec();
float x, y;
}
#include "vec2.hpp"
void vec2::printVec() {
std::cout << x << y << std::endl;
}
Example 2: what is a header in c++
#include "my_class.h"
using namespace N;
int main()
{
my_class mc;
mc.do_something();
return 0;
}
Example 3: what is a header in c++
int x;
x = 42;
Example 4: what is a header in c++
namespace N
{
class my_class
{
public:
void do_something();
};
}
Example 5: 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
Example 6: including cpp header file in c++
#include "enter_name_here.cpp"