Changeset 99 in pacpussensors for trunk/Wifibot/wifibot.h


Ignore:
Timestamp:
10/15/15 14:47:01 (9 years ago)
Author:
nguyenhu
Message:

compilation under linux with 0.2.X framework

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Wifibot/wifibot.h

    r22 r99  
    55//  author:     Pierre Hudelaine
    66//              Copyright Heudiasyc UMR UTC/CNRS 7253
    7 // 
     7//
    88//  version:    $Id: $
    99//
     
    1212*********************************************************************/
    1313#ifndef WIFIBOT_API
    14 # define WIFIBOT_API 
     14# define WIFIBOT_API
    1515
    1616#include "ps3remote.h"
    1717#include "Pacpus/kernel/Log.h"
    18 #include "Pacpus/kernel/ComponentBase.h" 
    19 #include "Pacpus/kernel/ComponentFactory.h" 
    20 
     18#include "Pacpus/kernel/ComponentBase.h"
     19#include "Pacpus/kernel/ComponentFactory.h"
     20#include "Pacpus/kernel/ComponentManager.h"
    2121
    2222namespace pacpus {
     
    2424class WIFIBOT_API Wifibot
    2525        : public QObject
    26         , public ComponentBase 
    27 { 
     26        , public ComponentBase
     27{
    2828  Q_OBJECT
    2929
    30 public: 
     30public:
    3131    /// Constructor
    3232    Wifibot (QString name);
    3333    /// Destructor
    3434    ~Wifibot();
    35    
     35
    3636protected:
    3737    // The 3 virtual methods relative to the ComponentBase inheritance
     
    3939    virtual void stopActivity();
    4040    virtual COMPONENT_CONFIGURATION configureComponent (XmlComponentConfig config);
    41    
     41
    4242private:
    4343    PS3remote * dualshock;
    44     PacpusSocket * pacpusSocket_;
     44    PacpusUDPSocket * pacpusSocket_;
    4545};
    4646
Note: See TracChangeset for help on using the changeset viewer.