Completed sync of BASE_CMN_SRC between PalmOS and bakefiles. Missing features (stdpaths) added and buildable.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32361 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
35
include/wx/palmos/stdpaths.h
Normal file
35
include/wx/palmos/stdpaths.h
Normal file
@@ -0,0 +1,35 @@
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
// Name: wx/palmos/stdpaths.h
|
||||
// Purpose: wxStandardPaths for PalmOS systems
|
||||
// Author: Wlodzimierz ABX Skiba
|
||||
// Modified by:
|
||||
// Created: 2005-02-25
|
||||
// RCS-ID: $Id$
|
||||
// Copyright: (c) 2005 Wlodzimierz Skiba
|
||||
// Licence: wxWindows licence
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#ifndef _WX_PALMOS_STDPATHS_H_
|
||||
#define _WX_PALMOS_STDPATHS_H_
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
// wxStandardPaths
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
class WXDLLIMPEXP_BASE wxStandardPaths : public wxStandardPathsBase
|
||||
{
|
||||
public:
|
||||
void SetInstallPrefix(const wxString& prefix) { m_prefix = prefix; }
|
||||
wxString GetInstallPrefix() const { return m_prefix; }
|
||||
virtual wxString GetConfigDir() const { return m_prefix; }
|
||||
virtual wxString GetUserConfigDir() const { return m_prefix; }
|
||||
virtual wxString GetDataDir() const { return m_prefix; }
|
||||
virtual wxString GetLocalDataDir() const { return m_prefix; }
|
||||
virtual wxString GetUserDataDir() const { return m_prefix; }
|
||||
virtual wxString GetPluginsDir() const { return m_prefix; }
|
||||
|
||||
private:
|
||||
wxString m_prefix;
|
||||
};
|
||||
|
||||
#endif // _WX_PALMOS_STDPATHS_H_
|
Reference in New Issue
Block a user