mirror of
https://github.com/SFML/SFML.git
synced 2024-11-25 04:41:05 +08:00
fd3526f742
SFML convention is to only use "" includes when the header is in the same directory as the file including it. Because these test util headers are in a separate directory, it makes more sense to include them via <>.
20 lines
500 B
C++
20 lines
500 B
C++
// Header for SFML unit tests.
|
|
//
|
|
// For a new window module test case, include this header.
|
|
// This ensures that string conversions are visible and can be used by doctest for debug output.
|
|
|
|
#ifndef SFML_TESTUTILITIES_WINDOW_HPP
|
|
#define SFML_TESTUTILITIES_WINDOW_HPP
|
|
|
|
#include <SystemUtil.hpp>
|
|
|
|
// String conversions for doctest framework
|
|
namespace sf
|
|
{
|
|
class VideoMode;
|
|
|
|
std::ostream& operator <<(std::ostream& os, const sf::VideoMode& videoMode);
|
|
}
|
|
|
|
#endif // SFML_TESTUTILITIES_WINDOW_HPP
|