Overte C++ Documentation
AssignmentFactory.h
1 //
2 // AssignmentFactory.h
3 // assignment-client/src
4 //
5 // Created by Stephen Birarda on 9/17/13.
6 // Copyright 2013 High Fidelity, Inc.
7 //
8 // Distributed under the Apache License, Version 2.0.
9 // See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
10 //
11 
12 #ifndef hifi_AssignmentFactory_h
13 #define hifi_AssignmentFactory_h
14 
15 #include <ThreadedAssignment.h>
16 
17 class AssignmentFactory {
18 public:
19  static ThreadedAssignment* unpackAssignment(ReceivedMessage& message);
20 };
21 
22 #endif // hifi_AssignmentFactory_h