]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - libstdc++-v3/docs/doxygen/stdheader.cc
Imported gcc-4.4.3
[msp430-gcc.git] / libstdc++-v3 / docs / doxygen / stdheader.cc
diff --git a/libstdc++-v3/docs/doxygen/stdheader.cc b/libstdc++-v3/docs/doxygen/stdheader.cc
deleted file mode 100644 (file)
index a792592..0000000
+++ /dev/null
@@ -1,153 +0,0 @@
-// This is a slow larval-stage kludge to help massage the generated man
-// pages.  It's used like this:
-const char* const usage = 
-"\nTakes on stdin, whitespace-separated words of the form\n"
-"\n"
-"    [bits/]stl_foo.h\n"
-"    [bits/]std_foo.h\n"
-"\n"
-"and writes on stdout the nearest matching standard header name.\n"
-"\n"
-"Takes no command-line arguments.\n"
-"\n";
-
-#include <string>
-#include <map>
-#include <iostream>
-
-typedef std::map<std::string, std::string>   Map;
-
-Map  headers;
-
-void init_map()
-{
-    // Enter the glamourous world of data entry!!  Maintain these!
-    headers["algo.h"]                   = "algorithm";
-    headers["algobase.h"]               = "algorithm";
-    headers["algorithm.h"]              = "algorithm";
-    headers["alloc.h"]                  = "memory";
-    headers["basic_ios.h"]              = "ios";
-    headers["basic_ios.tcc"]            = "ios";
-    headers["basic_string.h"]           = "string";
-    headers["basic_string.tcc"]         = "string";
-    headers["bitset.h"]                 = "bitset";
-    headers["bvector.h"]                = "vector";
-    //headers["char_traits.h"]            uhhhhhh
-    headers["complex.h"]                = "complex";
-    //headers["construct.h"]              stl_construct.h entirely internal
-    headers["deque.h"]                  = "deque";
-    headers["fstream.h"]                = "fstream";
-    headers["fstream.tcc"]              = "fstream";
-    headers["function.h"]               = "functional";
-    headers["functional.h"]             = "functional";
-    headers["heap.h"]                   = "algorithm";
-    headers["iomanip.h"]                = "iomanip";
-    headers["ios.h"]                    = "ios";
-    headers["iosfwd.h"]                 = "iosfwd";
-    headers["iostream.h"]               = "iostream";
-    headers["istream.h"]                = "istream";
-    headers["istream.tcc"]              = "istream";
-    headers["iterator.h"]               = "iterator";
-    headers["iterator_base_funcs.h"]    = "iterator";
-    headers["iterator_base_types.h"]    = "iterator";
-    headers["limits.h"]                 = "limits";
-    headers["list.h"]                   = "list";
-    headers["locale.h"]                 = "locale";
-    headers["locale_facets.h"]          = "locale";
-    headers["locale_facets.tcc"]        = "locale";
-    headers["map.h"]                    = "map";
-    headers["memory.h"]                 = "memory";
-    headers["multimap.h"]               = "map";
-    headers["multiset.h"]               = "set";
-    headers["numeric.h"]                = "numeric";
-    headers["ostream.h"]                = "ostream";
-    headers["ostream.tcc"]              = "ostream";
-    headers["pair.h"]                   = "utility";
-    //headers["pthread_alloc.h"]          who knows
-    headers["queue.h"]                  = "queue";
-    headers["raw_storage_iter.h"]       = "memory";
-    headers["relops.h"]                 = "utility";
-    headers["set.h"]                    = "set";
-    headers["sstream.h"]                = "sstream";
-    headers["sstream.tcc"]              = "sstream";
-    headers["stack.h"]                  = "stack";
-    headers["stdexcept.h"]              = "stdexcept";
-    headers["streambuf.h"]              = "streambuf";
-    headers["streambuf.tcc"]            = "streambuf";
-    headers["string.h"]                 = "string";
-    headers["tempbuf.h"]                = "memory";
-    //headers["threads.h"]                who knows
-    headers["tree.h"]                   = "backward/tree.h";
-    headers["uninitialized.h"]          = "memory";
-    headers["utility.h"]                = "utility";
-    headers["valarray.h"]               = "valarray";
-    headers["valarray_array.h"]         = "valarray";
-    headers["valarray_array.tcc"]       = "valarray";
-    headers["valarray_meta.h"]          = "valarray";
-    headers["vector.h"]                 = "vector";
-
-    // C wrappers -- probably was an easier way to do these, but oh well
-    headers["cassert.h"]                = "cassert";
-    headers["cctype.h"]                 = "cctype";
-    headers["cerrno.h"]                 = "cerrno";
-    headers["cfloat.h"]                 = "cfloat";
-    headers["climits.h"]                = "climits";
-    headers["clocale.h"]                = "clocale";
-    headers["cmath.h"]                  = "cmath";
-    headers["csetjmp.h"]                = "csetjmp";
-    headers["csignal.h"]                = "csignal";
-    headers["cstdarg.h"]                = "cstdarg";
-    headers["cstddef.h"]                = "cstddef";
-    headers["cstdio.h"]                 = "cstdio";
-    headers["cstdlib.h"]                = "cstdlib";
-    headers["cstring.h"]                = "cstring";
-    headers["ctime.h"]                  = "ctime";
-    headers["cwchar.h"]                 = "cwchar";
-    headers["cwctype.h"]                = "cwctype";
-}
-
-
-void do_word (std::string const& longheader)
-{
-    std::string::size_type start = 0;
-
-    // if it doesn't contain a "." then it's already a std header
-    if (longheader.find(".") == std::string::npos)
-    {
-        std::cout << longheader << '\n';
-        return;
-    }
-
-    if (longheader.substr(start,5) == "bits/")  start += 5;
-    if ((longheader.substr(start,4) == "stl_") ||
-        (longheader.substr(start,4) == "std_"))
-    {
-        start += 4;
-    }
-
-    // come on, gdb, find `p' already...
-    const char* p = longheader.substr(start).c_str();
-    Map::iterator word = headers.find(p);
-    if (word != headers.end())
-        std::cout << word->second << '\n';
-    else std::cout << "MAYBE_AN_ERROR_MESSAGE_HERE\n";
-}
-
-
-int main (int argc, char**)
-{
-    if (argc > 1)
-    {
-        std::cerr << usage;
-        exit(0);
-    }
-
-    init_map();
-
-    std::string w;
-    while (std::cin >> w)
-        do_word (w);
-}
-
-// vim:ts=4:et:
-