Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 7779 in orxonox.OLD for trunk/src/lib/gui/gl_gui/signal_connector.h


Ignore:
Timestamp:
May 23, 2006, 10:04:17 PM (19 years ago)
Author:
bensch
Message:

3088 linews changed :): trunk: namespaces

File:
1 copied

Legend:

Unmodified
Added
Removed
  • trunk/src/lib/gui/gl_gui/signal_connector.h

    r7778 r7779  
    11/*!
    2  * @file proto_class.h
     2 * @file signal_connector.h
    33 * @brief Definition of ...
    44*/
    55
    6 #ifndef _PROTO_CLASS_H
    7 #define _PROTO_CLASS_H
     6#ifndef _SIGNAL_CONNECTOR_H
     7#define _SIGNAL_CONNECTOR_H
    88
    9 #include "base_object.h"
     9#include "executor/executor.h"
    1010
    11 // FORWARD DECLARATION
     11namespace OrxGui
     12{
     13  //! A class for ...
     14  class SignalConnector
     15  {
     16  public:
     17    SignalConnector(BaseObject* object, const Executor* exec);
     18    SignalConnector(const SignalConnector& signalConnector);
     19    ~SignalConnector() { delete exec; }
    1220
     21    SignalConnector& operator=(const SignalConnector& signalConnector);
    1322
    14 
    15 //! A class for ...
    16 class ProtoClass : public BaseObject {
    17 
    18  public:
    19   ProtoClass();
    20   virtual ~ProtoClass();
    21 
    22 
    23  private:
    24 
    25 };
    26 
    27 #endif /* _PROTO_CLASS_H */
     23  private:
     24    const Executor*     exec;
     25    BaseObject*         object;
     26  };
     27}
     28#endif /* _SIGNAL_CONNECTOR_H */
Note: See TracChangeset for help on using the changeset viewer.