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