Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Apr 25, 2005, 6:15:02 PM (19 years ago)
Author:
patrick
Message:

orxonox/branches/physics: just implemented the class hirarchy of the physics engine

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/branches/physics/src/util/physics/physical_interaction_sym.cc

    r3954 r3961  
    1212
    1313   ### File Specific:
    14    main-programmer: ...
     14   main-programmer: Patrick Boenzli
    1515   co-programmer: ...
    1616*/
    1717
    18 #define DEBUG_SPECIAL_MODULE DEBUG_MODULE_WORLD_ENTITY
     18#define DEBUG_SPECIAL_MODULE DEBUG_MODULE_PHYSICS
    1919
    20 #include "proto_class.h"
     20#include "physical_interaction_sym.h"
    2121
    22 #include "stdincl.h" // maybe
     22#include "stdincl.h"
    2323
    2424using namespace std;
     
    2727/**
    2828   \brief standard constructor
    29    \todo this constructor is not jet implemented - do it
    3029*/
    31 ProtoClass::ProtoClass ()
     30PhysicalInteractionSym::PhysicalInteractionSym ()
    3231{
    33    this->setClassName ("ProtoClass");
     32   this->setClassName ("PhysicalInteractionSym");
    3433}
    3534
     
    3938
    4039*/
    41 ProtoClass::~ProtoClass ()
     40PhysicalInteractionSym::~PhysicalInteractionSym ()
    4241{
    4342  // delete what has to be deleted here
    4443}
    45 
    46 /**
    47    \brief nonsense - delete this method
    48    \param realy nothing to give
    49    \returns true or false - probably nothing?
    50 
    51    this is just to show the doxygen abilities (this for example is an extension for a long comment)
    52 */
    53 bool ProtoClass::doNonSense (int nothing) {}
Note: See TracChangeset for help on using the changeset viewer.