1 // This may look like C code, but it's really -*- C++ -*-
2 /*
3  * Copyright (C) 2010 Emweb bv, Herent, Belgium.
4  *
5  * See the LICENSE file for terms of use.
6  */
7 #ifndef WT_POPUP_WINDOW_H_
8 #define WT_POPUP_WINDOW_H_
9 
10 namespace Wt {
11 
12   class WApplication;
13 
14   /*! \brief Internal class that provides a JavaScript popup window managing function.
15    */
16   class PopupWindow {
17   public:
18     /*! \brief Loads the PopupWindow JavaScript support function.
19      */
20     static void loadJavaScript(WApplication *app);
21   };
22 }
23 
24 #endif // WT_POPUP_WINDOW_H_
25