Presence of these methods usually imply that it is not feasible to this
via a constructor
*/
- add( .. )
+ add (..)
/// replace some data of *this
- set( .. )
+ set (..)
+
+=head2 Constructor
+
+Every class should have a default constructor.
+
+Don't use non-default constructors if this can be avoided:
+
+ Foo f(1)
+
+is less readable than
+
+ Foo f;
+ f.x = 1
+
+or
+ Foo f(Foo_convert::int_to_foo (1))
+
+
=head1 HUNGARIAN NOTATION NAMING CONVENTION
TOPLEVEL_MAJOR_VERSION = 0
TOPLEVEL_MINOR_VERSION = 1
-TOPLEVEL_PATCH_LEVEL = 8
+TOPLEVEL_PATCH_LEVEL = 9
# use to send patches, always empty for released version:
TOPLEVEL_MY_PATCH_LEVEL =
echo untarring ..
if [ ! -f $newarc ]
then
- echo cant find $newarc
+ echo "can't find $newarc"
exit
fi
tar zfx $newarc
if [ ! -f $oldarc ]
then
- echo cant find $oldarc
+ echo "can't find $oldarc"
exit
fi
tar zfx $oldarc
#define STRING_CONVERT_HH
#include "fproto.hh"
+#include "string.hh"
/** The functor String_convert handles all conversions to/from String
#ifndef SOURCE_HH
#define SOURCE_HH
-#include "plist.hh"
+
#include "proto.hh"
+#include "plist.hh"
+
class Sources
{
public:
localuninstall: uninstallexe
-
$(outdir)/mi2mu-version.o: $(outdir)/version.hh
+