]> Dogcows Code - chaz/yoink/blob - src/moof/network.hh
998473b7f88535fb70d4324172c1f54f86e6c5e2
[chaz/yoink] / src / moof / network.hh
1
2 /*] Copyright (c) 2009-2011, Charles McGarvey [*****************************
3 **] All rights reserved.
4 *
5 * Distributable under the terms and conditions of the 2-clause BSD license;
6 * see the file COPYING for a complete text of the license.
7 *
8 *****************************************************************************/
9
10 #ifndef _MOOF_NETWORK_HH_
11 #define _MOOF_NETWORK_HH_
12
13 /**
14 * \file network.hh
15 * Builds a high-level protocol and match-making system on top of network
16 * sockets for multiplayer support.
17 */
18
19 #include <string>
20 #include <vector>
21
22
23 namespace moof {
24
25
26 class network_gamer
27 {
28 };
29
30
31 class network_session
32 {
33 public:
34
35 const std::vector<network_gamer>& gamers();
36 };
37
38
39 } // namespace moof
40
41 #endif // _MOOF_NETWORK_HH_
42
This page took 0.034315 seconds and 3 git commands to generate.