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.
83 lines
1.5 KiB
83 lines
1.5 KiB
12 years ago
|
// This file is generated by tdeconfig_compiler from test9.kcfg.
|
||
15 years ago
|
// All changes you do to this file will be lost.
|
||
|
#ifndef TEST9_H
|
||
|
#define TEST9_H
|
||
|
|
||
12 years ago
|
#include <tdeconfigskeleton.h>
|
||
15 years ago
|
#include <kdebug.h>
|
||
|
|
||
14 years ago
|
#include <tqdir.h>
|
||
12 years ago
|
class Test9 : public TDEConfigSkeleton
|
||
15 years ago
|
{
|
||
|
public:
|
||
|
|
||
14 years ago
|
Test9( const TQString & transport, const TQString & folder );
|
||
15 years ago
|
~Test9();
|
||
|
|
||
|
/**
|
||
|
Set MyStringList
|
||
|
*/
|
||
14 years ago
|
void setMyStringList( const TQStringList & v )
|
||
15 years ago
|
{
|
||
13 years ago
|
if (!isImmutable( TQString::fromLatin1( "MyStringList" ) ))
|
||
15 years ago
|
mMyStringList = v;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
Get MyStringList
|
||
|
*/
|
||
14 years ago
|
TQStringList myStringList() const
|
||
15 years ago
|
{
|
||
|
return mMyStringList;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
Set This is a list of paths
|
||
|
*/
|
||
14 years ago
|
void setMyPathList( const TQStringList & v )
|
||
15 years ago
|
{
|
||
13 years ago
|
if (!isImmutable( TQString::fromLatin1( "MyPathList" ) ))
|
||
15 years ago
|
mMyPathList = v;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
Get This is a list of paths
|
||
|
*/
|
||
14 years ago
|
TQStringList myPathList() const
|
||
15 years ago
|
{
|
||
|
return mMyPathList;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
Set This is an additional test for PathList
|
||
|
*/
|
||
14 years ago
|
void setMyPathsList2( const TQStringList & v )
|
||
15 years ago
|
{
|
||
13 years ago
|
if (!isImmutable( TQString::fromLatin1( "MyPathsList2" ) ))
|
||
15 years ago
|
mMyPathsList2 = v;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
Get This is an additional test for PathList
|
||
|
*/
|
||
14 years ago
|
TQStringList myPathsList2() const
|
||
15 years ago
|
{
|
||
|
return mMyPathsList2;
|
||
|
}
|
||
|
|
||
|
protected:
|
||
|
public:
|
||
14 years ago
|
TQString mParamtransport;
|
||
|
TQString mParamfolder;
|
||
15 years ago
|
|
||
|
// MyOptionsXX
|
||
14 years ago
|
TQStringList mMyStringList;
|
||
|
TQStringList mMyPathList;
|
||
|
TQStringList mMyPathsList2;
|
||
15 years ago
|
|
||
|
private:
|
||
|
};
|
||
|
|
||
|
#endif
|
||
|
|