Changeset 5523 in orxonox.OLD for branches/network/src
- Timestamp:
- Nov 9, 2005, 5:01:17 PM (19 years ago)
- Location:
- branches/network/src/lib/network
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/network/src/lib/network/Makefile.am
r5520 r5523 6 6 libORXnet_a_SOURCES = synchronizeable.cc \ 7 7 network_manager.cc 8 libORXnet_a_SOURCES = connection_monitor.cc 8 9 9 10 … … 11 12 noinst_HEADERS = synchronizeable.h \ 12 13 network_manager.h 14 noinst_HEADERS = connection_monitor.h 13 15 -
branches/network/src/lib/network/synchronizeable.cc
r5517 r5523 1 /* 2 orxonox - the future of 3D-vertical-scrollers 3 4 Copyright (C) 2004 orx 5 6 This program is free software; you can redistribute it and/or modify 7 it under the terms of the GNU General Public License as published by 8 the Free Software Foundation; either version 2, or (at your option) 9 any later version. 10 11 ### File Specific: 12 main-programmer: Silvan Nellen 13 co-programmer: ... 14 */ 15 16 /** 17 * standard constructor 18 */ 19 Synchronizeable::Synchronizeable() 20 { 21 22 23 } 24 25 26 Synchronizeable::Synchronizeable() 27 { 28 29 30 31 32 } -
branches/network/src/lib/network/synchronizeable.h
r5517 r5523 1 /*! 2 * @file connection_monitor.h 3 \brief provides information about the quality of a connection. 4 5 */ 6 7 class Synchronizeable 8 { 9 public: 10 Synchronizeable(); 11 ~Synchronizeable(); 12 13 14 private: 15 16 };
Note: See TracChangeset
for help on using the changeset viewer.