GLVis  v4.2
Accurate and flexible finite element visualization
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Pages
sdl_windows.hpp
Go to the documentation of this file.
1 // Copyright (c) 2010-2022, Lawrence Livermore National Security, LLC. Produced
2 // at the Lawrence Livermore National Laboratory. All Rights reserved. See files
3 // LICENSE and NOTICE for details. LLNL-CODE-443271.
4 //
5 // This file is part of the GLVis visualization tool and library. For more
6 // information and source code availability see https://glvis.org.
7 //
8 // GLVis is free software; you can redistribute it and/or modify it under the
9 // terms of the BSD-3 license. We welcome feedback and contributions, see file
10 // CONTRIBUTING.md for details.
11 
12 #ifndef GLVIS_SDL_WINDOWS_HPP
13 #define GLVIS_SDL_WINDOWS_HPP
14 
15 #include "sdl_helper.hpp"
16 
17 #ifdef SDL_VIDEO_DRIVER_WINDOWS
18 
20 {
21 public:
23 
25 
26  void WaitEvent();
27 
28  void SendEvent();
29 private:
30  struct Impl;
31  std::unique_ptr<Impl> m_impl;
32 };
33 
34 #endif
35 
36 #endif // GLVIS_SDL_WINDOWS_HPP