Alien-SmokeQt
view release on metacpan or search on metacpan
cmake/modules/BasicFindPackageVersion.cmake.in view on Meta::CPAN
1234567891011# This is a very basic file for the new style find_package() search mode,
# i.e. Config-mode. It is used by MACRO_WRITE_BASIC_CMAKE_VERSION_FILE() from
# MacroWriteBasicCMakeVersionFile.cmake.
# In this mode find_package() searches for a <package>Config.cmake
# file and an associated <package>Version.cmake file, which it loads to check
# the version number.
# This file can be used with configure_file() to generate such a file for a project
# with very basic logic.
# It sets PACKAGE_VERSION_EXACT if the current version string and the requested
# version string are exactly the same and it sets PACKAGE_VERSION_COMPATIBLE
# if the current version is >= requested version.
generator/parser/stringhelpers.h view on Meta::CPAN
495051525354555657585960616263646566676869void CPPPARSER_EXPORT skipFunctionArguments(QString str, QStringList& skippedArguments,
int
& argumentsStart );
/**
* Removes white space at the beginning and end, and replaces contiguous inner white-spaces
with
single white-spaces. Newlines are treated as whitespaces, the returned text will have
no
more newlines.
* */
QString CPPPARSER_EXPORT reduceWhiteSpace(QString str);
QString CPPPARSER_EXPORT stripFinalWhitespace(QString str);
/**
* Fills all c++-style comments within the
given
code
with
the
given
'replacement'
character
* Newlines are preserved.
* */
QString CPPPARSER_EXPORT clearComments( QString str, QChar replacement =
' '
);
/**
* Fills all c++-strings within the
given
code
with
the
given
'replacement'
character
* Comments should have been removed
before
.
* */
QString CPPPARSER_EXPORT clearStrings( QString str, QChar replacement =
' '
);
/**
smoke/qt/qsci/qscintilla2_includes.h view on Meta::CPAN
3233343536373839404142434445#include <qscilexersql.h>
#include <qscilexertcl.h>
#include <qscilexertex.h>
#include <qscilexervhdl.h>
#include <qscilexerxml.h>
#include <qscilexeryaml.h>
#include <qscimacro.h>
#include <qsciprinter.h>
#include <qsciscintillabase.h>
#include <qsciscintilla.h>
#include <qscistyledtext.h>
#include <qscistyle.h>
#include <qvariant.h>
smoke/qt/qtcore/tests/test.cpp view on Meta::CPAN
595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665#include "qstringlist.h"
int
main(
int
argc, char ** argv)
{
QStringList foo;
}
#endif
#ifdef TEST_QT_NO_STYLE_PLASTIQUE
#include "QtGui/qplastiquestyle.h"
int
main(
int
argc, char ** argv)
{
QPlastiqueStyle foo;
}
#endif
#ifdef TEST_QT_NO_STYLE_S60
#include "QtGui/qs60style.h"
int
main(
int
argc, char ** argv)
{
QS60Style foo;
}
#endif
#ifdef TEST_QT_NO_STYLE_WINDOWSXP
#include "QtGui/qwindowsxpstyle.h"
int
main(
int
argc, char ** argv)
{
QWindowsXPStyle foo;
}
#endif
#ifdef TEST_QT_NO_STYLE_WINDOWS
#include "QtGui/qwindowsstyle.h"
int
main(
int
argc, char ** argv)
{
QWindowsStyle foo;
}
#endif
#ifdef TEST_QT_NO_STYLE_MAC
#include "QtGui/macstyle.h"
int
main(
int
argc, char ** argv)
{
QMacStyle foo;
}
#endif
#ifdef TEST_QT_NO_STYLE_CLEANLOOKS
#include "QtGui/qcleanlooksstyle.h"
int
main(
int
argc, char ** argv)
{
QCleanlooksStyle foo;
}
#endif
#ifdef TEST_QT_NO_TABBAR
#include "QtGui/qtabbar.h"
( run in 0.369 second using v1.01-cache-2.11-cpan-9b1e4054eb1 )