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

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