C++ STL : Including all libraries? -



C++ STL : Including all libraries? -

how include libraries of stl in c++ code rather individually including them. illustration -

#include <queue> #include <containers>

a simple way include of them. please help ?

you can't can create list , set them in header header guard ofc.

// c++ total standard header include #include <cstdlib> #include <csignal> #include <csetjmp> #include <cstdarg> #include <typeinfo> #include <typeindex> #include <type_traits> #include <bitset> #include <functional> #include <utility> #include <ctime> #include <chrono> #include <cstddef> #include <initializer_list> #include <tuple> #include <new> #include <memory> #include <scoped_allocator> #include <climits> #include <cfloat> #include <cstdint> #include <cinttypes> #include <limits> #include <exception> #include <stdexcept> #include <cassert> #include <system_error> #include <cerrno> #include <cctype> #include <cwctype> #include <cstring> #include <cwstring> #include <cwchar> #include <cuchar> #include <string> #include <array> #include <vector> #include <deque> #include <list> #include <forward_list> #include <set> #include <map> #include <unordered_set> #include <unordered_map> #include <stack> #include <queue> #include <algorithm> #include <iterator> #include <cmath> #include <complex> #include <valarray> #include <random> #include <numeric> #include <ratio> #include <cfenv> #include <iosfwd> #include <ios> #include <istream> #include <ostream> #include <iostream> #include <fstream> #include <sstream> #include <strstream> #include <iomanip> #include <streambuf> #include <cstdio> #include <locale> #include <clocale> #include <codecvt> #include <regex> #include <atomic> #include <thread> #include <mutex> #include <future> #include <condition_variable> #include <ciso646> #include <ccomplex> #include <ctgmath> #include <cstdalign> #include <cstdbool>

that should total list :) ( c++11 has active ) might want remove ones deprecated ( shouldn't many / warning anyway ) , ones don't have because they're special / old / new

c++

Comments

Popular posts from this blog

Delphi change the assembly code of a running process -

json - Hibernate and Jackson (java.lang.IllegalStateException: Cannot call sendError() after the response has been committed) -

C++ 11 "class" keyword -