/**************************************************************************** ** ** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the config.tests of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and Digia. For licensing terms and ** conditions see http://qt.digia.com/licensing. For further information ** use the contact form at http://qt.digia.com/contact-us. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 2.1 requirements ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Digia gives you certain additional ** rights. These rights are described in the Digia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3.0 as published by the Free Software ** Foundation and appearing in the file LICENSE.GPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU General Public License version 3.0 requirements will be ** met: http://www.gnu.org/copyleft/gpl.html. ** ** ** $QT_END_LICENSE$ ** ****************************************************************************/ /* Sample program for configure to test STL support on target platforms. We are mainly concerned with being able to instantiate templates for common STL container classes. */ #include #include #include #include #include int main() { std::vector v1; v1.push_back( 0 ); v1.push_back( 1 ); v1.push_back( 2 ); v1.push_back( 3 ); v1.push_back( 4 ); int v1size = v1.size(); v1size = 0; int v1capacity = v1.capacity(); v1capacity = 0; std::vector::iterator v1it = std::find( v1.begin(), v1.end(), 99 ); bool v1notfound = (v1it == v1.end()); v1notfound = false; v1it = std::find( v1.begin(), v1.end(), 3 ); bool v1found = (v1it != v1.end()); v1found = false; std::vector v2; std::copy( v1.begin(), v1it, std::back_inserter( v2 ) ); int v2size = v2.size(); v2size = 0; std::map m1; m1.insert( std::make_pair( 1, 2.0 ) ); m1.insert( std::make_pair( 3, 2.0 ) ); m1.insert( std::make_pair( 5, 2.0 ) ); m1.insert( std::make_pair( 7, 2.0 ) ); int m1size = m1.size(); m1size = 0; std::map::iterator m1it = m1.begin(); for ( ; m1it != m1.end(); ++m1it ) { int first = (*m1it).first; first = 0; double second = (*m1it).second; second = 0.0; } std::map< int, double > m2( m1 ); int m2size = m2.size(); m2size = 0; return 0; } // something mean to see if the compiler and C++ standard lib are good enough template class DummyClass { // everything in std namespace ? typedef std::bidirectional_iterator_tag i; typedef std::ptrdiff_t d; // typename implemented ? typedef typename std::map::iterator MyIterator; };