]> Dogcows Code - chaz/yoink/blob - src/moof/network.hh
fixed documentation about where to find licenses
[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 #include <string>
14 #include <vector>
15
16
17 /**
18 * \file network.hh
19 * Builds a high-level protocol and match-making system on top of network
20 * sockets for multiplayer support.
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.032857 seconds and 4 git commands to generate.