From c9cbeced5b3f2bdd7407e29c0811e65954132540 Mon Sep 17 00:00:00 2001 From: Root THC Date: Tue, 24 Feb 2026 12:42:47 +0000 Subject: initial --- .../doc/API_doc/html/SystemMap_8hpp-source.html | 49 ++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 other/Kermit/doc/API_doc/html/SystemMap_8hpp-source.html (limited to 'other/Kermit/doc/API_doc/html/SystemMap_8hpp-source.html') diff --git a/other/Kermit/doc/API_doc/html/SystemMap_8hpp-source.html b/other/Kermit/doc/API_doc/html/SystemMap_8hpp-source.html new file mode 100644 index 0000000..4055733 --- /dev/null +++ b/other/Kermit/doc/API_doc/html/SystemMap_8hpp-source.html @@ -0,0 +1,49 @@ + +
+00001 /* +00002 * SystemMap.hpp: +00003 * representation if a system map file (and alike). +00004 * written by palmers / teso +00005 */ +00006 #ifndef SYSTEM_MAP_C +00007 #define SYSTEM_MAP_C +00008 +00009 #include <map> +00010 #include <string> +00011 #include <fstream> +00012 +00016 class SystemMap +00017 { +00018 private: +00019 typedef map<string, unsigned int> blamap; +00020 typedef blamap::value_type bla_val; +00021 +00022 blamap add_map; +00023 +00024 public: +00028 SystemMap (string file); +00029 +00033 SystemMap (); +00034 +00038 ~SystemMap (); +00039 +00044 bool contains (string); +00045 +00052 void add (string name, unsigned int address); +00053 +00059 unsigned int operator[] (string name); +00060 }; +00061 #endif /* SYSTEM_MAP_C */ +
1.2.9.1 written by Dimitri van Heesch,
+ © 1997-2001
+
+
--
cgit v1.3