mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
16 lines
No EOL
339 B
C++
16 lines
No EOL
339 B
C++
//
|
|
// AssignmentThread.cpp
|
|
// hifi
|
|
//
|
|
// Created by Stephen Birarda on 2014-03-28.
|
|
// Copyright (c) 2014 High Fidelity, Inc. All rights reserved.
|
|
//
|
|
|
|
#include "AssignmentThread.h"
|
|
|
|
AssignmentThread::AssignmentThread(const SharedAssignmentPointer& assignment, QObject* parent) :
|
|
QThread(parent),
|
|
_assignment(assignment)
|
|
{
|
|
|
|
} |