BWAPI
trunk/bwapi/include/BWAPI/Type.h
Go to the documentation of this file.
00001 #pragma once
00002 #include <string>
00003 
00004 namespace BWAPI
00005 {
00006   class Type
00007   {
00008   private:
00009     int _id;
00010   public:
00011     Type(int id);
00012     operator int() const;
00013     int getID() const;
00014   };
00015 }
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines