00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
#ifndef __CB2__LAYOUT_H__
00015
#define __CB2__LAYOUT_H__
00016
00017
00018
#include <cb2/utils.h>
00019
#include <cb2/Containers.h>
00020
00021
00022
namespace CB2 {
00023
00024 class Layout :
public Container {
00025
public:
00026
Layout(
Container & parent);
00027
Layout(
Application & parent);
00028
virtual ~Layout();
00029
00030
virtual Template *
Add(
Widget * child,
String & anchor);
00031 };
00032
00033 }
00034
00035
00036
#endif