Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/tags/0.1-pre-alpha/doc/program_examples/c++/orxonox.cc @ 6844

Last change on this file since 6844 was 1803, checked in by patrick, 20 years ago

doc update

File size: 340 bytes
Line 
1#include "orxonox.h"
2
3#include <iostream>
4#include <cstdio>
5
6using namespace std;
7
8
9Orxonox::Orxonox() { int x = 1; }
10Orxonox::~Orxonox() { int x = 1; }
11
12
13int Orxonox::getInfo() {  }
14int Orxonox::setInfo() { int z = 1; }
15
16
17
18int main( int argc, char** argv ) {
19 
20  Orxonox orx;
21  orx.getInfo();
22
23  cout << "test" << endl;
24
25 
26  return 0;
27}
Note: See TracBrowser for help on using the repository browser.