Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Nov 16, 2005, 12:10:58 PM (18 years ago)
Author:
bensch
Message:

orxonox/branches/network: fixed makefiles
created working subproject network

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/network/src/subprojects/network/network_unit_test.cc

    r5579 r5580  
     1
     2#include "stdlibincl.h"
     3#include <stdarg.h>
     4#include <stdio.h>
     5#include "shell_buffer.h"
    16
    27
     8#include "network_manager.h"
     9
     10int verbose = 4;
    311
    412
    5 
    6 void startHelp(int argc, char** argv)
     13int startHelp(int argc, char** argv)
    714{}
    815
     
    2330  }
    2431
    25   return startOrxonox(argc, argv);
     32  new NetworkManager();
     33
     34  return 0;
    2635}
    2736
    2837
     38bool ShellBuffer::addBufferLineStatic(const char* line, ...)
     39{
     40  va_list arguments;
     41  vprintf(line, arguments);
     42
     43}
Note: See TracChangeset for help on using the changeset viewer.