mirror of
https://github.com/overte-org/overte.git
synced 2025-04-25 20:16:16 +02:00
30 lines
704 B
C++
30 lines
704 B
C++
//
|
|
// AssignmentClient.h
|
|
// hifi
|
|
//
|
|
// Created by Stephen Birarda on 11/25/2013.
|
|
// Copyright (c) 2013 HighFidelity, Inc. All rights reserved.
|
|
//
|
|
|
|
#ifndef __hifi__AssignmentClient__
|
|
#define __hifi__AssignmentClient__
|
|
|
|
#include <QtCore/QCoreApplication>
|
|
|
|
#include "ThreadedAssignment.h"
|
|
|
|
class AssignmentClient : public QCoreApplication {
|
|
Q_OBJECT
|
|
public:
|
|
AssignmentClient(int &argc, char **argv);
|
|
private slots:
|
|
void sendAssignmentRequest();
|
|
void readPendingDatagrams();
|
|
void assignmentCompleted();
|
|
void handleAuthenticationRequest();
|
|
private:
|
|
Assignment _requestAssignment;
|
|
ThreadedAssignment* _currentAssignment;
|
|
};
|
|
|
|
#endif /* defined(__hifi__AssignmentClient__) */
|