
#include "wbboxP.h"
#include "wbbox.h"

void write_box(outfile, node)
     FILE *outfile;
     WidgetNode *node;
 {

   /* Output C code to create a Box living inside a form (typical) */
   /* ------------------------------------------------------------ */
   fprintf(outfile, "   i = 0;\n");     /* initialize the index in output */
   write_general_widget(outfile, node, 0, "boxWidgetClass", "Box");

 };        /* end of write_box()  */

/****************************************************************/

void prstr_box(buffer, node)
     MailBuffer *buffer;
     WidgetNode *node;
  {
    prstr_general_widget(buffer, node);

  };         /* end of prstr_box()  */

/****************************************************************/
