Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 5523 in orxonox.OLD


Ignore:
Timestamp:
Nov 9, 2005, 5:01:17 PM (18 years ago)
Author:
snellen
Message:

connection_monitor.h and connection_monitor.cc

Location:
branches/network
Files:
2 added
4 edited

Legend:

Unmodified
Added
Removed
  • branches/network/Makefile.am

    r4976 r5523  
    2828include doc/documentation.am
    2929endif
     30_SOURCES = connection_monitor.h
     31_SOURCES = connection_monitor.h connection_monitor.h
  • branches/network/src/lib/network/Makefile.am

    r5520 r5523  
    66libORXnet_a_SOURCES = synchronizeable.cc \
    77                      network_manager.cc
     8libORXnet_a_SOURCES = connection_monitor.cc
    89
    910
     
    1112noinst_HEADERS =     synchronizeable.h \
    1213                     network_manager.h
     14noinst_HEADERS =     connection_monitor.h
    1315
  • 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 */
     19Synchronizeable::Synchronizeable()
     20{
     21
     22
     23}
     24
     25
     26Synchronizeable::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
     7class Synchronizeable
     8{
     9        public:
     10                Synchronizeable();
     11                ~Synchronizeable();
     12
     13
     14        private:
     15
     16};
Note: See TracChangeset for help on using the changeset viewer.