j_manager.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef __BARRYJDWP_MANAGER_H__
00023 #define __BARRYJDWP_MANAGER_H__
00024
00025 #include "dll.h"
00026 #include "dp_codinfo.h"
00027 #include <stdint.h>
00028 #include <string>
00029 #include <map>
00030
00031 namespace Barry { namespace JDWP {
00032
00033 class BXEXPORT JDWAppInfo
00034 {
00035 private:
00036 protected:
00037
00038 public:
00039 uint32_t uniqueId;
00040 std::string appName;
00041
00042 Barry::JDG::ClassList classList;
00043
00044 void Load(Barry::JDG::CodInfo &info);
00045 };
00046
00047
00048 class BXEXPORT JDWAppList : public std::map<uint32_t, JDWAppInfo>
00049 {
00050 public:
00051 typedef std::map<uint32_t, JDWAppInfo> base_type;
00052 typedef base_type::iterator iterator;
00053 typedef base_type::const_iterator const_iterator;
00054 };
00055
00056
00057 }}
00058
00059
00060 #endif
00061