Main Page | Modules | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Namespace Members | Class Members | File Members | Related Pages

dumper.hh

Go to the documentation of this file.
00001 // dumper.hcc: this file is part of the Vaucanson project.   -*- C++ -*-
00002 //
00003 // Vaucanson, a generic library for finite state machines.
00004 //
00005 // Copyright (C) 2005, 2006 The Vaucanson Group.
00006 //
00007 // This program is free software; you can redistribute it and/or
00008 // modify it under the terms of the GNU General Public License
00009 // as published by the Free Software Foundation; either version 2
00010 // of the License, or (at your option) any later version.
00011 //
00012 // The complete GNU General Public Licence Notice can be found as the
00013 // `COPYING' file in the root directory.
00014 //
00015 // The Vaucanson Group consists of people listed in the `AUTHORS' file.
00016 
00034 #if not defined (VCSN_TOOLS_DUMPER_HH) and not defined (VCSN_SANITY_CHECK)
00035 # define VCSN_TOOLS_DUMPER_HH
00036 
00037 # include <string>
00038 
00039 namespace vcsn
00040 {
00041   namespace tools
00042   {
00044     int string_to_int (const std::string& s);
00045 
00046     struct dumper
00047     {
00049         dumper (int argc, char **argv, int pos = 1);
00050 
00052         void usage (int estatus);
00053 
00054         enum dump_format
00055         {
00056           fmt_error,
00057           fmt_dot,
00058           fmt_fsm,
00059           fmt_simple,
00060           fmt_xml,
00061         };
00062 
00063         enum dump_format dump_format (std::string fmt);
00064 
00065         const char* get_fmt () const;
00066 
00067         void
00068         operator () (std::ostream& o,
00069                      const automaton_t& automaton,
00070                      const std::string& name = "automaton");
00071       private:
00072         enum dump_format fmt_;
00073         int argc_;
00074         char** argv_;
00075     };
00076   }
00077 }
00078 
00079 # ifndef VCSN_USE_INTERFACE_ONLY
00080 #  include <vaucanson/tools/dumper.hxx>
00081 # endif // ! VCSN_USE_INTERFACE_ONLY
00082 
00083 #endif // ! VCSN_TOOLS_DUMPER_HH && ! VCSN_SANITY_CHECK

Generated on Mon Jul 24 16:56:37 2006 for Vaucanson by  doxygen 1.4.4