test c++
C++
code posted
created at 07 Apr 17:18, updated at 01 May 11:15
Edit
|
Back
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 |
#ifndef TEST_H #define TEST_H namespace QExtend { //! \~english A test class //! \~french Une classe de test /*! \~english A more elaborate class description. \~french Description détaillée. \~ \author vy */ class MonWidget : public QWdget { QSting m_string;/*!< \~english This is english. \~french En français*/ public : //! \~english A constructor //! \~french Un constructeur /*! \author vy2 \~english A more elaborate description of the constructor. \~french Desciption détaillé du constructeur. */ MonWidget( ); public slots: //! \~english A slot //! \~french Un slot /*! \~english A more elaborate description of the slot. \param s A string \return return a integer \~french Desciption détaillée du slot. \param s Une chaîne de caractères \return retourne un entier */ int unSlot ( const QString & s); signals: //! A signal. /*! A more elaborate description of the signal. */ void unSignal( const QString & s) }; } #endif |
1.2 KB in 2 ms with coderay