Simon Rozman 308f63490c Rename .h to .hpp
These files are C++ only. They should either have no extension like
standard C++ headers (which is cumbersome on Windows environments), or
.hpp.

.h is used for C and hybrid C/C++ headers.

Signed-off-by: Simon Rozman <simon@rozman.si>
2023-03-15 21:49:41 +01:00

26 lines
563 B
C

/*
SPDX-License-Identifier: MIT
Copyright © 2023 Amebis
*/
#pragma once
#define SECURITY_WIN32
#define _WINSOCKAPI_ // Prevent inclusion of winsock.h in windows.h
#include <stdex/base64.hpp>
#include <stdex/errno.hpp>
#include <stdex/exception.hpp>
#include <stdex/hex.hpp>
#include <stdex/idrec.hpp>
#include <stdex/interval.hpp>
#include <stdex/mapping.hpp>
#include <stdex/parser.hpp>
#include <stdex/progress.hpp>
#include <stdex/sal.hpp>
#include <stdex/sgml.hpp>
#include <stdex/string.hpp>
#include <stdex/vector_queue.hpp>
#include <CppUnitTest.h>