#include <ShoreApp.h> Ref<T> ::Ref<T>(); Ref<T> ::Ref<T>(const Ref<T> &ref); Ref<any>::Ref<any>(const LOID &loid);
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.