Omit the implementations, even trivial ones, from the documentation.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70682
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
Returns the name of the key which was passed to the ctor.
The "name" is just anything which follows the last slash of the string given to the ctor.
*/
- const wxString& Name() const { return m_strName; }
+ const wxString& Name() const;
/**
This method must be called if the original path inside the wxConfig object
class wxTransform2D
{
public :
- virtual ~wxTransform2D() { }
+ virtual ~wxTransform2D();
virtual void Transform( wxPoint2DInt* pt )const = 0;
virtual void Transform( wxRect2DInt* r ) const;
virtual wxPoint2DInt Transform( const wxPoint2DInt &pt ) const;
//
// 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;
class MessageParameters
{
public:
- /// Constructor
- MessageParameters() { }
+ /// Trivial default constructor.
+ MessageParameters();
/// Constructor taking a filename and a mime type.
MessageParameters(const wxString& filename,
virtual wxString GetParamValue(const wxString& name) const;
/// Trivial but virtual dtor as this class can be inherited from.
- virtual ~MessageParameters() { }
+ virtual ~MessageParameters();
};
/**
class wxTranslationsLoader
{
public:
- /// Constructor
- wxTranslationsLoader() {}
+ /// Trivial default constructor.
+ wxTranslationsLoader();
/**
Called to load requested catalog.