35 lines
841 B
C++
35 lines
841 B
C++
/** @file
|
|
|
|
$Id$
|
|
|
|
$Date$
|
|
$Author$
|
|
|
|
@copy © Marc Wäckerlin
|
|
@license LGPL, see file <a href="license.html">COPYING</a>
|
|
|
|
$Log$
|
|
Revision 1.2 2004/09/09 20:09:06 marc
|
|
library versioning now works how i want it
|
|
|
|
Revision 1.1 2004/08/28 16:13:42 marc
|
|
mrw-c++-0.92 (mrw)
|
|
- new file: version.cpp
|
|
- new file header for all sources
|
|
- work around warning in mrw::auto<T>
|
|
- possibility to compile without log4cxx
|
|
- work around bugs in demangle.h and libiberty.h
|
|
- corrections in documentation
|
|
- added simple tracing mechanism
|
|
- more warnings
|
|
- small corrections in Auto<>::Free and a new test for it
|
|
- possibility to compile without stack trace
|
|
|
|
*/
|
|
|
|
#include <string>
|
|
|
|
namespace mrw {
|
|
const std::string version("@(#)@PACKAGENAME@-@MAJOR@.@MINOR@.@LEAST@");
|
|
}
|