record.specification.c
/************************************************************ -*-c-*- *******************************/
/*                                                                                                  */
/* record.specification.c:                                                                          */
/*                                                                                                  */
/****************************************************************************************************/

/****************************************************************************************************/
/*                                                                                                  */
/*     Copyright (C) 2003, 2004 Joerg Kunze                                                         */
/*                                                                                                  */
/*     This file is part of siliconBrain.                                                           */
/*                                                                                                  */
/*     siliconBrain is free software; you can redistribute it and/or modify                         */
/*     it under the terms of the GNU General Public License as published by                         */
/*     the Free Software Foundation; either version 2 of the License, or                            */
/*     (at your option) any later version.                                                          */
/*                                                                                                  */
/*     siliconBrain is distributed in the hope that it will be useful,                              */
/*     but WITHOUT ANY WARRANTY; without even the implied warranty of                               */
/*     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                                */
/*     GNU General Public License for more details.                                                 */
/*                                                                                                  */
/*     You should have received a copy of the GNU General Public License                            */
/*     along with this program; if not, write to the Free Software                                  */
/*     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                    */
/*                                                                                                  */
/****************************************************************************************************/
#include <stdio.h>

#define siliconBrainPrintShortNames
#include "siliconBrainLib"

#include "siliconBrainSpecification"

static const char *siliconBrainRelease       = "$siliconBrainRelease: 0.2.3 $";
static const char *siliconBrainRcsIdentifier = "$Id: record.specification.c,v 1.9 2004/12/14 23:31:26 joerg Exp $";
static const char *siliconBrainSaveStamp     = "$siliconBrainSaveStamp: 2004/12/14 22:30:11, Joerg Kunze$";

int main( int argc, const char *argv[] ) {

   SiliconBrainPrinter siliconBrainPrinter;
   siliconBrainPrinterInit( &siliconBrainPrinter, argc, argv );

   tag( "command" );
      attribute( "name"         , "record"                  );
      attribute( "release"      , siliconBrainRelease       );
      attribute( "rcsIdentifier", siliconBrainRcsIdentifier );
      attribute( "saveStamp"    , siliconBrainSaveStamp     );
      attribute( "title"        , "The carrier of the generic part of all record caommands." );

      tag( "withoutStandardOptions" ); end();

      tag( "shortDescription" );
         text( "Here are defined all command options of record commands." );
      end();
      tag( "longDescription" );
         text( "record ... " );
      end();

      tag( "option" );
         attribute( "name"            , "recordValue" );
         attribute( "type"            , "value"   );
         attribute( "oneCharacterName", "m"       );

         tag( "shortDescription" );
            text( "a test record value option" );
         end();
         tag( "longDescription" );
            text(
               "An option which is available for all record commands. So it is a kind of generic option for the generic "
               "command which is genereated for each record specification."
            );
         end();
      end();

   end();

   return 0;
}

/*
$Log: record.specification.c,v $
Revision 1.9  2004/12/14 23:31:26  joerg
published for new release 0.2.3

Revision 1.8  2004/12/14 23:17:05  joerg
published for new release 0.2.2

Revision 1.7  2004/12/14 22:42:23  joerg
allFiles: all sources have a Log CVS keyword at the end now.

*/