当前位置: 首页>>代码示例>>C++>>正文


C++ QXmlSchema::messageHandler方法代码示例

本文整理汇总了C++中QXmlSchema::messageHandler方法的典型用法代码示例。如果您正苦于以下问题:C++ QXmlSchema::messageHandler方法的具体用法?C++ QXmlSchema::messageHandler怎么用?C++ QXmlSchema::messageHandler使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在QXmlSchema的用法示例。


在下文中一共展示了QXmlSchema::messageHandler方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: copyConstructor

void tst_QXmlSchema::copyConstructor() const
{
    /* Verify that we can take a const reference, and simply do a copy of a default constructed object. */
    {
        const QXmlSchema schema1;
        QXmlSchema schema2(schema1);
    }

    /* Copy twice. */
    {
        const QXmlSchema schema1;
        QXmlSchema schema2(schema1);
        QXmlSchema schema3(schema2);
    }

    /* Verify that copying default values works. */
    {
        const QXmlSchema schema1;
        const QXmlSchema schema2(schema1);
        QCOMPARE(schema2.messageHandler(), schema1.messageHandler());
        QCOMPARE(schema2.uriResolver(), schema1.uriResolver());
        QCOMPARE(schema2.networkAccessManager(), schema1.networkAccessManager());
        QCOMPARE(schema2.isValid(), schema1.isValid());
    }
}
开发者ID:maxxant,项目名称:qt,代码行数:25,代码来源:tst_qxmlschema.cpp

示例2: messageHandlerDefaultValue

void tst_QXmlSchema::messageHandlerDefaultValue() const
{
    /* Test that the default value of message handler is not empty. */
    {
        QXmlSchema schema;
        QVERIFY(schema.messageHandler() != static_cast<QAbstractMessageHandler*>(0));
    }
}
开发者ID:maxxant,项目名称:qt,代码行数:8,代码来源:tst_qxmlschema.cpp

示例3: messageHandlerSignature

void tst_QXmlSchema::messageHandlerSignature() const
{
    /* Const object. */
    const QXmlSchema schema;

    /* The function should be const. */
    schema.messageHandler();
}
开发者ID:maxxant,项目名称:qt,代码行数:8,代码来源:tst_qxmlschema.cpp

示例4: messageHandler

void tst_QXmlSchema::messageHandler() const
{
    /* Test that we return the message handler that was set. */
    {
        MessageSilencer handler;

        QXmlSchema schema;
        schema.setMessageHandler(&handler);
        QCOMPARE(schema.messageHandler(), static_cast<QAbstractMessageHandler *>(&handler));
    }
}
开发者ID:maxxant,项目名称:qt,代码行数:11,代码来源:tst_qxmlschema.cpp

示例5: messageHandlerDefaultValue

void tst_QXmlSchemaValidator::messageHandlerDefaultValue() const
{
    /* Test that the default value of message handler is equal to the one from the schema. */
    {
        const QXmlSchema schema;
        const QXmlSchemaValidator validator(schema);
        QVERIFY(validator.messageHandler() == schema.messageHandler());
    }

    /* Test that the default value of network access manager is equal to the one from the schema. */
    {
        QXmlSchema schema;

        MessageSilencer handler;
        schema.setMessageHandler(&handler);

        const QXmlSchemaValidator validator(schema);
        QVERIFY(validator.messageHandler() == schema.messageHandler());
    }
}
开发者ID:PNIDigitalMedia,项目名称:emscripten-qt,代码行数:20,代码来源:tst_qxmlschemavalidator.cpp


注:本文中的QXmlSchema::messageHandler方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。