header files 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++
#include "my_class.h"
#include <iostream>
using namespace N;
using namespace std;
void my_class::do_something()
{
cout << "Doing something!" << endl;
}
Example 4: including cpp header file in c++
#include "enter_name_here.cpp"