/* * Copyright 2006, Haiku Inc. * Distributed under the terms of the MIT License. */ #ifndef _GROUP_VIEW_H #define _GROUP_VIEW_H #include #include class BGroupView : public BView { public: BGroupView( enum orientation orientation = B_HORIZONTAL, float spacing = 0.0f); virtual ~BGroupView(); virtual void SetLayout(BLayout* layout); BGroupLayout* GroupLayout() const; }; #endif // _GROUP_VIEW_H