1 // Copyright (c) 2003 Institute of Transport, 2 // Railway Construction and Operation, 3 // University of Hanover, Germany 4 // 5 // Use, modification and distribution are subject to the 6 // Boost Software License, Version 1.0. (See accompanying file 7 // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 9 10 #include <qobject.h> 11 12 class TestA : public QObject 13 { 14 Q_OBJECT 15 16 public: 17 18 TestA(); 19 20 // Needed to suppress 'unused variable' varning. do_something()21 void do_something() { } 22 }; 23