mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 16:41:02 +02:00
27 lines
613 B
C++
27 lines
613 B
C++
//
|
|
// AnimationServer.h
|
|
// animation-server/src
|
|
//
|
|
// Created by Stephen Birarda on 12/5/2013.
|
|
// Copyright 2013 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_AnimationServer_h
|
|
#define hifi_AnimationServer_h
|
|
|
|
#include <QtCore/QCoreApplication>
|
|
|
|
class AnimationServer : public QCoreApplication {
|
|
Q_OBJECT
|
|
public:
|
|
AnimationServer(int &argc, char **argv);
|
|
~AnimationServer();
|
|
private slots:
|
|
void readPendingDatagrams();
|
|
};
|
|
|
|
|
|
#endif // hifi_AnimationServer_h
|