I have this webapge:
http://www.stroustrup.com/Programming/PPP2code/std_lib_facilities.h
I'm completing a book by Stroustrup and want to do what I need to do so that I can begin my programs with,
#include "std_lib_facilities.h"
Rather than,
#include<iostream>
#include<string>
#include<vector>
#include<algorithm>
#include<cmath>
using namespace std;
What do I need to do?