Advertisement
Guest User

SatItem.h

a guest
May 16th, 2012
17
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.55 KB | None | 0 0
  1. #ifndef SATITEM_H
  2. #define SATITEM_H
  3.  
  4. #include <MarbleClock.h>
  5. #include <GeoDataTreeModel.h>
  6. #include <GeoDataLineString.h>
  7. #include <GeoDataTrack.h>
  8. #include <GeoDataPlacemark.h>
  9.  
  10. using namespace Marble;
  11.  
  12. class SatItem
  13. {
  14. public:
  15.     SatItem(const MarbleClock* clock, GeoDataTreeModel* geoDataTreeModel);
  16.  
  17.     void update();
  18.  
  19. private:
  20.     int i;
  21.     const MarbleClock*      m_clock;
  22.     GeoDataLineString*      m_track_line_string;
  23.     //GeoDataTrack*           m_track;
  24.     GeoDataPlacemark*       geoDataPlacemark;
  25.  
  26. };
  27.  
  28. #endif // SATITEM_H
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement