adonthell-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Adonthell-devel] Rewriting C++ base code


From: Pélisson Fabien
Subject: Re: [Adonthell-devel] Rewriting C++ base code
Date: 24 Jul 2003 11:16:01 +0200

Hi,

I start to check to source code of the adonthell 0.4. version and i have
made a small patch (cvs diff -u > adonthell-0.4.patch). I will continue
to read and try to make others things than just rewriting code.

I have also two questions :
Why is copy construction forbid in the surface class ?
and
Do we have to respect some coding style (like indentation) ?

Finally, a new example :
---- Namespace used also in definition ----
actual :
using namespace gfx;

surface::surface()
{
...
}

should be :
namespace gfx
{
  surface::surface()
  {
    ...
  }
}
because using namespace gfx; does not say that the definitions belows
will be part of the namespace gfx.

That's all for the moment ;-)

Fabien.

P.S. Thanks to Alex for its answer.

Attachment: adonthell-0.4.patch
Description: Text Data


reply via email to

[Prev in Thread] Current Thread [Next in Thread]