Pdbhtmlrc Values and Example


Values

Example

NOTE:
  • The example will always display linenumbers.
  • Example links will be stale.
  • color_bgcolor is the background color for this and all other pages.

 #000ff0 em color_link

#3300ff tt color_alink
#3388dd tt color_vlink
#9911bb em color_comments
#ff3f00 tt color_constants
#408000 sup color_preprocessor
#904000 tt color_linenumbers #c00000 big color_target
#881088 strong color_keyword

Add_line_numbersFalse
Add_backtoindex_footer True
List_methods_in_classes True
Just_build_pdbhtmlrc_html False
Add_doc_files False
Exit_on_missing_src_file False
Print_error_messages False
Print_warning_messages False

slash_replacement_
dot_replacement _

Exclude these files:
No files are specified.

Exclude these strings:
/usr
kai


Read source files from:
No directory paths are specified.

Write html files to
../html

Find doc files in
No directory paths are specified.
1:/*************************************************************************/
2:/* DUCTAPE Version 1.0                                                   */
3:/* Copyright (C) 2001                                                    */
4:/* Forschungszentrum Juelich, Zentralinstitut fuer Angewandte Mathematik */
5:/* University of Oregon, Department of Computer and Information Science  */
6:/*************************************************************************/
7:
8:#ifndef __PDB_ROUTINE_H__
9:#define __PDB_ROUTINE_H__
10:
11:#include "pdbTemplateItem.h"
12:
13:#define  THIS    1
14:#define  THAT    2
15:
16:class pdbRoutine :  public pdbTemplateItem {
17:public:
18:  pdbRoutine( const string& name,  int id) : pdbTemplateItem(name, id)
19:    {}
20:  virtual ~pdbRoutine();   // dtor
21:
22:  bool isVirtual const {
23:   return v == 0 || v == 7 || v == THAT ;
24:  }
25:
26:  virtual void process(PDB *p);
27:
28:private:
29:  const pdbType     *sig;
30:  virt_t             v
31:  bool               crvo;
32:  int                n;
33:};
34:
34:#endif

Back to Index
Key to Colors and Styles