CONSTRUCT(OC)

Shore Programmer's Manual - 3 November 94

NAME

construct \- REF(T) constructors

SYNOPSIS

#include <ShoreApp.h>
REF(T)  ::REF(T)();
REF(T)  ::REF(T)(const REF(T) &ref);
REF(any)::REF(any)(const LOID &loid);

DESCRIPTION

All REF(T) classes have at least two constructors. REF(any) has one additional constructor. The first form (the default constructor) performs no initializations at all. Applications should make no assumptions about a ref constructed by the default constructor. The second form constructs a new ref that is equivalent to the given ref. The third form, available only on REF(any) converts a logical OID to an equivalent ref.

REF(T) classes have no destructors.

VERSION

This manual page applies to Version 0.1 of theShore software.

SPONSORSHIP

The Shore project is sponsored by the Advanced Research Project Agency, ARPA order number 018 (formerly 8230), monitored by the U.S. Army Research Laboratory under contract DAAB07-91-C-Q518.

COPYRIGHT

Copyright (c) 1994 Computer Sciences Department, University of Wisconsin -- Madison. All Rights Reserved.

SEE ALSO

ref(oc) , assign(oc) , equal(oc) .