2
0

p3dcparse.1 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. .TH DCPARSE 1 "27 December 2014" "" Panda3D
  2. .SH NAME
  3. dcparse \- read distributed class files
  4. .SH SYNOPSIS
  5. .B p3dcparse
  6. [
  7. .I options
  8. ] [
  9. .I file1 file2 ...
  10. ]
  11. .br
  12. .B p3dcparse -h
  13. .SH DESCRIPTION
  14. This program reads one or more DC files, which are used to describe the
  15. communication channels in the distributed class system. By default,
  16. the file(s) are read and concatenated, and a single hash code is printed
  17. corresponding to the file's contents.
  18. .SH OPTIONS
  19. .TP
  20. .B \-v
  21. Writes a complete parseable version of the file to standard
  22. output instead of printing a hash code.
  23. .TP
  24. .B \-b
  25. Writes a brief parseable version of the file instead of a full
  26. version. This is semantically the same as the output produced
  27. the above \fB\-v\fP option--reading it would produce exactly the
  28. same results--but it is designed to be slightly obfuscated. The
  29. comments and parameter names are not included.
  30. .TP
  31. .B \-c
  32. Write a list of class names, showing the inheritance hierarchy.
  33. Some class names will be listed twice in the presence of multiple
  34. inheritance.
  35. .TP
  36. .B \-f
  37. Write a complete list of field names available for each class,
  38. including all inherited fields.