1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
/*
* ion/ioncore/classes.h
*
* Copyright (c) Tuomo Valkonen 1999-2007.
*
* See the included file LICENSE for details.
*/
#ifndef ION_IONCORE_CLASSES_H
#define ION_IONCORE_CLASSES_H
/* Forward declarations of some classes to avoid problems
* with the header system.
*/
#include <libtu/obj.h>
INTRCLASS(WClientWin);
INTRCLASS(WFrame);
INTRCLASS(WInfoWin);
INTRCLASS(WMPlex);
INTRCLASS(WRegion);
INTRCLASS(WMoveresMode);
INTRCLASS(WRootWin);
INTRCLASS(WScreen);
INTRCLASS(WWindow);
INTRCLASS(WGroup);
INTRCLASS(WGroupCW);
INTRCLASS(WGroupWS);
INTRCLASS(WPHolder);
INTRCLASS(WMPlexPHolder);
INTRCLASS(WFramedPHolder);
INTRSTRUCT(WStacking);
INTRSTRUCT(WLListNode);
INTRSTRUCT(WStackingIterTmp);
INTRSTRUCT(WSubmapState);
INTRSTRUCT(WRegionAttachData);
INTRSTRUCT(WRQGeomParams);
#endif /* ION_IONCORE_CLASSES_H */
|