From 5159cd2beb2e87806a5b54e9991b7895285c9d3e Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sun, 27 Jan 2013 01:04:16 -0600 Subject: Rename a number of libraries and executables to avoid conflicts with KDE4 --- tdecore/tdeconfig_compiler/tests/test1.h.ref | 196 +++++++++++++++++++++++++++ 1 file changed, 196 insertions(+) create mode 100644 tdecore/tdeconfig_compiler/tests/test1.h.ref (limited to 'tdecore/tdeconfig_compiler/tests/test1.h.ref') diff --git a/tdecore/tdeconfig_compiler/tests/test1.h.ref b/tdecore/tdeconfig_compiler/tests/test1.h.ref new file mode 100644 index 000000000..bb74038a5 --- /dev/null +++ b/tdecore/tdeconfig_compiler/tests/test1.h.ref @@ -0,0 +1,196 @@ +// This file is generated by tdeconfig_compiler from test1.kcfg. +// All changes you do to this file will be lost. +#ifndef TEST1_H +#define TEST1_H + +#include +#include + +#include +class Test1 : public TDEConfigSkeleton +{ + public: + class EnumListOption + { + public: + enum type { One, Two, Three, COUNT }; + }; + + Test1( const TQString & transport, const TQString & folder ); + ~Test1(); + + /** + Set One option + */ + void setOneOption( bool v ) + { + if (!isImmutable( TQString::fromLatin1( "OneOption" ) )) + mOneOption = v; + } + + /** + Get One option + */ + bool oneOption() const + { + return mOneOption; + } + + /** + Set Another option + */ + void setAnotherOption( int v ) + { + if (!isImmutable( TQString::fromLatin1( "AnotherOption" ) )) + mAnotherOption = v; + } + + /** + Get Another option + */ + int anotherOption() const + { + return mAnotherOption; + } + + /** + Set This is some funky option + */ + void setListOption( int v ) + { + if (!isImmutable( TQString::fromLatin1( "ListOption" ) )) + mListOption = v; + } + + /** + Get This is some funky option + */ + int listOption() const + { + return mListOption; + } + + /** + Set This is a string + */ + void setMyString( const TQString & v ) + { + if (!isImmutable( TQString::fromLatin1( "MyString" ) )) + mMyString = v; + } + + /** + Get This is a string + */ + TQString myString() const + { + return mMyString; + } + + /** + Set This is a path + */ + void setMyPath( const TQString & v ) + { + if (!isImmutable( TQString::fromLatin1( "MyPath" ) )) + mMyPath = v; + } + + /** + Get This is a path + */ + TQString myPath() const + { + return mMyPath; + } + + /** + Set Another option + */ + void setAnotherOption2( int v ) + { + if (!isImmutable( TQString::fromLatin1( "AnotherOption2" ) )) + mAnotherOption2 = v; + } + + /** + Get Another option + */ + int anotherOption2() const + { + return mAnotherOption2; + } + + /** + Set MyStringList + */ + void setMyStringList( const TQStringList & v ) + { + if (!isImmutable( TQString::fromLatin1( "MyStringList" ) )) + mMyStringList = v; + } + + /** + Get MyStringList + */ + TQStringList myStringList() const + { + return mMyStringList; + } + + /** + Set MyStringListHidden + */ + void setMyStringListHidden( const TQStringList & v ) + { + if (!isImmutable( TQString::fromLatin1( "MyStringListHidden" ) )) + mMyStringListHidden = v; + } + + /** + Get MyStringListHidden + */ + TQStringList myStringListHidden() const + { + return mMyStringListHidden; + } + + /** + Set List Number + */ + void setMyNumber( int v ) + { + if (!isImmutable( TQString::fromLatin1( "MyNumber" ) )) + mMyNumber = v; + } + + /** + Get List Number + */ + int myNumber() const + { + return mMyNumber; + } + + protected: + TQString mParamtransport; + TQString mParamfolder; + + // General-$(folder) + bool mOneOption; + int mAnotherOption; + int mListOption; + + // MyOptions + TQString mMyString; + TQString mMyPath; + int mAnotherOption2; + TQStringList mMyStringList; + TQStringList mMyStringListHidden; + int mMyNumber; + + private: +}; + +#endif + -- cgit v1.2.1