mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-25 16:55:07 +02:00
update boiler plate to abide by new standard
This commit is contained in:
parent
4b306401af
commit
7304049f83
2 changed files with 19 additions and 11 deletions
|
@ -1,10 +1,15 @@
|
|||
//
|
||||
// ScriptUUID.h
|
||||
// hifi
|
||||
// ScriptUUID.cpp
|
||||
// libraries/script-engine/src/
|
||||
//
|
||||
// Created by Andrew Meadows on 2014.04.07
|
||||
// Created by Andrew Meadows on 2014-04-07
|
||||
// Copyright (c) 2014 High Fidelity, Inc. All rights reserved.
|
||||
//
|
||||
// Scriptable interface for a UUID helper class object. Used exclusively in the JavaScript API
|
||||
//
|
||||
// Distributed under the Apache License, Version 2.0.
|
||||
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
||||
//
|
||||
|
||||
#include <QDebug>
|
||||
|
||||
|
|
|
@ -1,17 +1,22 @@
|
|||
//
|
||||
// ScriptUUID.h
|
||||
// hifi
|
||||
// libraries/script-engine/src/
|
||||
//
|
||||
// Created by Andrew Meadows on 2014.04.07
|
||||
// Created by Andrew Meadows on 2014-04-07
|
||||
// Copyright (c) 2014 High Fidelity, Inc. All rights reserved.
|
||||
//
|
||||
// Scriptable interface for a UUID helper class object. Used exclusively in the JavaScript API
|
||||
//
|
||||
// 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__ScriptUUID__
|
||||
#define __hifi__ScriptUUID__
|
||||
#ifndef hifi_ScriptUUID_h
|
||||
#define hifi_ScriptUUID_h
|
||||
|
||||
#include <QUuid>
|
||||
|
||||
/// Scriptable interface a UUID helper class object. Used exclusively in the JavaScript API
|
||||
/// Scriptable interface for a UUID helper class object. Used exclusively in the JavaScript API
|
||||
class ScriptUUID : public QObject {
|
||||
Q_OBJECT
|
||||
|
||||
|
@ -24,6 +29,4 @@ public slots:
|
|||
void print(const QString& lable, const QUuid& id);
|
||||
};
|
||||
|
||||
|
||||
|
||||
#endif /* defined(__hifi__Vec3__) */
|
||||
#endif // hifi_ScriptUUID_h
|
||||
|
|
Loading…
Reference in a new issue