Changeset 5566 in orxonox.OLD for branches/network
- Timestamp:
- Nov 15, 2005, 1:00:55 AM (19 years ago)
- Location:
- branches/network/src/lib/network
- Files:
-
- 2 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/network/src/lib/network/Makefile.am
r5554 r5566 8 8 network_socket.cc \ 9 9 connection_monitor.cc \ 10 data_stream.cc 10 network_stream.cc \ 11 data_stream.cc 11 12 12 13 … … 16 17 network_socket.h \ 17 18 connection_monitor.h \ 19 network_stream.h \ 18 20 data_stream.h 19 21 -
branches/network/src/lib/network/Makefile.in
r5533 r5566 1 # Makefile.in generated by automake 1.9. 6from Makefile.am.1 # Makefile.in generated by automake 1.9.5 from Makefile.am. 2 2 # @configure_input@ 3 3 … … 15 15 @SET_MAKE@ 16 16 17 18 SOURCES = $(libORXnet_a_SOURCES) 17 19 18 20 srcdir = @srcdir@ … … 56 58 am_libORXnet_a_OBJECTS = synchronizeable.$(OBJEXT) \ 57 59 network_manager.$(OBJEXT) network_socket.$(OBJEXT) \ 58 connection_monitor.$(OBJEXT) 60 connection_monitor.$(OBJEXT) network_stream.$(OBJEXT) \ 61 data_stream.$(OBJEXT) 59 62 libORXnet_a_OBJECTS = $(am_libORXnet_a_OBJECTS) 60 63 DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) … … 187 190 network_manager.cc \ 188 191 network_socket.cc \ 189 connection_monitor.cc 192 connection_monitor.cc \ 193 network_stream.cc \ 194 data_stream.cc 190 195 191 196 noinst_HEADERS = synchronizeable.h \ 192 197 network_manager.h \ 193 network_socket.h \ 194 connection_monitor.h 198 network_socket.h \ 199 connection_monitor.h \ 200 network_stream.h \ 201 data_stream.h 195 202 196 203 all: all-am … … 242 249 243 250 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/connection_monitor.Po@am__quote@ 251 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/data_stream.Po@am__quote@ 244 252 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/network_manager.Po@am__quote@ 245 253 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/network_socket.Po@am__quote@ 254 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/network_stream.Po@am__quote@ 246 255 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/synchronizeable.Po@am__quote@ 247 256 -
branches/network/src/lib/network/network_manager.cc
r5530 r5566 19 19 */ 20 20 #define DEBUG_MODULE_NETWORK 21 22 23 #include "network_stream.h" 24 #include "list.h" 21 25 22 26 … … 63 67 64 68 65 66 67 69 /** 68 70 * standard constructor 69 71 */ 70 72 NetworkManager::NetworkManager() 71 {} 73 { 74 this->netStreamList = new tList<NetworkStream>(); 75 NetworkStream* ns = new NetworkStream(); 76 } 72 77 73 78 -
branches/network/src/lib/network/network_manager.h
r5533 r5566 2 2 * @file network_manager.h 3 3 * Main interface for the network module. Manages all the modules 4 5 4 */ 6 5 … … 14 13 #include "base_object.h" 15 14 15 /* this are class predefinitions. the includes are in the source file */ 16 class NetworkStream; 17 template<typename> class tList; 16 18 17 19 /* and here is the class itsself*/ 18 20 class NetworkManager : public BaseObject 19 21 { … … 32 34 void synchronize(); 33 35 36 private: 37 tList<NetworkStream>* netStreamList; // list with refs to all network streams 38 34 39 }; 35 40
Note: See TracChangeset
for help on using the changeset viewer.