mirror of
https://github.com/overte-org/overte.git
synced 2025-06-17 13:40:08 +02:00
22 lines
567 B
C
22 lines
567 B
C
//
|
|
// ScriptEngineLogging.h
|
|
// libraries/script-engine/src
|
|
//
|
|
// Created by Seth Alves on 4/6/15.
|
|
// Copyright 2014 High Fidelity, Inc.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
|
|
#ifndef hifi_ScriptEngineLogging_h
|
|
#define hifi_ScriptEngineLogging_h
|
|
|
|
#include <QLoggingCategory>
|
|
|
|
Q_DECLARE_LOGGING_CATEGORY(scriptengine)
|
|
Q_DECLARE_LOGGING_CATEGORY(scriptengine_module)
|
|
Q_DECLARE_LOGGING_CATEGORY(scriptengine_script)
|
|
|
|
#endif // hifi_ScriptEngineLogging_h
|
|
|