/* * PDFedit - free program for PDF document manipulation. * Copyright (C) 2006, 2007 PDFedit team: Michal Hocko, * Miroslav Jahoda, * Jozef Misutka, * Martin Petricek * * Project is hosted on http://sourceforge.net/projects/pdfedit */ /** @file This file hold constants defining version of application. These should be changed before release \brief Version information */ #ifndef __VERSION_H__ #define __VERSION_H__ /** Application name shown in various About boxes, window titles, etc .... */ #define APP_NAME "PDFedit" /** Version of application. */ #define VERSION "0.3.2" /** Compile time of this program */ #define COMPILE_TIME (__DATE__ ", " __TIME__) #endif