mirror of
https://github.com/overte-org/overte.git
synced 2025-04-25 20:16:16 +02:00
19 lines
418 B
C++
19 lines
418 B
C++
//
|
|
// AssignmentFactory.h
|
|
// hifi
|
|
//
|
|
// Created by Stephen Birarda on 9/17/13.
|
|
// Copyright (c) 2013 HighFidelity, Inc. All rights reserved.
|
|
//
|
|
|
|
#ifndef __hifi__AssignmentFactory__
|
|
#define __hifi__AssignmentFactory__
|
|
|
|
#include <ThreadedAssignment.h>
|
|
|
|
class AssignmentFactory {
|
|
public:
|
|
static ThreadedAssignment* unpackAssignment(const QByteArray& packet);
|
|
};
|
|
|
|
#endif /* defined(__hifi__AssignmentFactory__) */
|