0ad/source/gui/GUI.h
janwas b755ddefda remove all author/modified by tags.
make include guards consistent.

This was SVN commit r5040.
2007-05-07 16:33:24 +00:00

43 lines
758 B
C++

/*
GUI Inclusion file
--Overview--
Include this file and it will include the whole GUI.
--More info--
Check TDD for GUI Engine Documentation
*/
#ifndef INCLUDED_GUI
#define INCLUDED_GUI
//--------------------------------------------------------
// Includes
//--------------------------------------------------------
#include <map>
#include <string>
#include <vector>
#include <stddef.h>
#include "ps/Pyrogenesis.h"
#include "ps/CStr.h"
#include "lib/ogl.h"
#include "GUIbase.h"
#include "GUIutil.h"
#include "GUItext.h"
#include "CGUIList.h"
#include "IGUIObject.h"
#include "IGUIButtonBehavior.h"
#include "IGUIScrollBarOwner.h"
#include "IGUITextOwner.h"
#include "IGUIScrollBar.h"
#include "CGUIScrollBarVertical.h"
#include "CGUI.h"
#endif