#ifndef VERSION_STAMPER_CLASS
#define VERSION_STAMPER_CLASS

/*****************************************************************************\
*                                                                             *
*  Name   : version_stamper                                                   *
*  Author : Chris Koeritz                                                     *
*                                                                             *
*  Purpose:                                                                   *
*                                                                             *
*    This class creates a resource (.rc) file and a C++ header (.h) file      *
*  when given the directory where a version information file (version.ini)    *
*  resides.  It creates the files in that directory.                          *
*                                                                             *
*******************************************************************************
* Copyright (c) 1995-$now By Author.  This program 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.  This is online at:      *
*     http://www.fsf.org/copyleft/gpl.html                                    *
* Please send any updates to: fred@gruntose.com                               *
\*****************************************************************************/

#include <basis/istring.h>
#include <opsystem/application_shell.h>

class version_stamper : public application_shell
{
public:
  version_stamper();
  ~version_stamper();

  IMPLEMENT_CLASS_NAME("version_stamper");

  int execute();
    // performs the main action of creating resource and code files.
};

#endif

