// Name: layout.h
// Purpose: interface of layout constraints classes
// Author: wxWidgets team
-// RCS-ID: $Id: $
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
//
// Dimension is unconstrained
//
- void Unconstrained() { relationship = wxUnconstrained; }
+ void Unconstrained();
//
// Dimension is 'as is' (use current size settings)
//
- void AsIs() { relationship = wxAsIs; }
+ void AsIs();
//
// Accessors
// note that default copy ctor and assignment operators are ok
- virtual ~wxLayoutConstraints(){}
+ virtual ~wxLayoutConstraints();
bool SatisfyConstraints(wxWindow *win, int *noChanges);
bool AreSatisfied() const;