summaryrefslogtreecommitdiffstats
path: root/kspread/kspread_locale.h
blob: 705d7b510398deed1596433291e95b05101bbe51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#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