C++ include header code example

Example 1: c++ include header

#include "headerfile.h"

Example 2: c++ header files

// You should use header files when you wan't to split your
// program across multiple files. Use it like this:

// vec2.hpp
class vec2 {
	public:
  		void printVec(); // Decleration
  		float x, y;
}
// vec2.cpp
#include "vec2.hpp"
void vec2::printVec() { // Implementation
	std::cout << x << y << std::endl;
}

Example 3: including cpp header file in c++

#include "enter_name_here.cpp"

//Make sure the files are in the same directory.

Tags:

Cpp Example