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
362 B

#ifndef KSPREAD_LOCALE_H
#define KSPREAD_LOCALE_H
#include <tdelocale.h>
class TQDomElement;
class TQDomDocument;
namespace KSpread
{
class Locale : public TDELocale
{
public:
Locale();
void load( const TQDomElement& element );
TQDomElement save( TQDomDocument& doc ) const;
void defaultSystemConfig();
};
} //namespace KSpread
#endif