You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
koffice/kspread/kspread_locale.h

25 lines
353 B

#ifndef KSPREAD_LOCALE_H
#define KSPREAD_LOCALE_H
#include <klocale.h>
class QDomElement;
class QDomDocument;
namespace KSpread
{
class Locale : public KLocale
{
public:
Locale();
void load( const QDomElement& element );
QDomElement save( QDomDocument& doc ) const;
void defaultSystemConfig();
};
} //namespace KSpread
#endif