All Classes Functions
Targeting.hpp
1 #ifndef TARGETING_H
2 #define TARGETING_H
3 
4 #include <string>
5 #include <OrbiterSDK.h>
6 
7 class Targeting
8 {
9  public:
10  Targeting();
11  virtual ~Targeting();
12 
13  OBJHANDLE GetTargetBody( const std::string & strTgt ) const;
14  OBJHANDLE GetTargetBody( char * strTgt ) const;
15  VESSEL * GetTargetVessel( const std::string & strTgt ) const;
16  VESSEL * GetTargetVessel( char * strTgt ) const;
17  char * ToCharArray( const std::string & str ) const;
18  protected:
19  private:
20 
21 };
22 
23 #endif // TARGETING_H