The DASObject I'm handling using a void* and a short that defines the
object's type that the void* points:
typedef void* DASPointer;
class DASValues {
const static short DAS_BOOL = 1;
const static short DAS_STRING = 2;
};
class DASObject {
private:
DASPointer dasPointer;
short dasValueType;
public:
DASObject(void);
DASObject(DASPointer pointer, short value);
virtual ~DASObject(void);
void setDASObject(DASPointer pointer, short value);
DASPointer getDASPointer(void) const;
short getDASObject(void) const;
};
Any suggestion?
Adriano Crestani
On 1/16/07, Adriano Crestani <[EMAIL PROTECTED]> wrote:
There are a lot Geoffrey : (...I'm compiling class by class and seeing the
errors and fixing them. If you want to help to fix the code that would be
great. But actually I don't know how to assign the classes you or me is
going to work, the problem is that sometimes when I'm fixing the errors of
some class I need to fix the header of another, do you understand? How could
be the best way to divide the classes for us to work on them parallelly?
Adriano Crestani
On 1/15/07, Geoffrey Winn <[EMAIL PROTECTED]> wrote:
>
> On 09/01/07, Adriano Crestani <[EMAIL PROTECTED]> wrote:
> >
> >
> > - As I am not used to work with pointers and references explicity as
> C++
> > does, there are some pointers and refereces that are not being used
> > correctly and need to be fixed.
>
>
> I think Luciano has checked-in the DAS code. Can you point to some
> examples
> in the code of the pointer of reference issues that you think need to be
> fixed?
>
> Regards,
>
> Geoff.
>
>