*** empty log message ***

This commit is contained in:
David Rose 2001-03-22 19:01:11 +00:00
parent c124fea0a3
commit 15d4d01836
5 changed files with 5 additions and 5 deletions

View File

@ -19,7 +19,7 @@
// Distributed Class, and is always implemented as a // Distributed Class, and is always implemented as a
// remote procedure method. // remote procedure method.
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
class DCAtomicField : public DCField { class EXPCL_DIRECT DCAtomicField : public DCField {
PUBLISHED: PUBLISHED:
virtual DCAtomicField *as_atomic_field(); virtual DCAtomicField *as_atomic_field();

View File

@ -17,7 +17,7 @@
// Description : Defines a particular DistributedClass as read from an // Description : Defines a particular DistributedClass as read from an
// input .dc file. // input .dc file.
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
class DCClass { class EXPCL_DIRECT DCClass {
PUBLISHED: PUBLISHED:
int get_number() const; int get_number() const;
string get_name() const; string get_name() const;

View File

@ -16,7 +16,7 @@ class DCMolecularField;
// Description : A single field of a Distributed Class, either atomic // Description : A single field of a Distributed Class, either atomic
// or molecular. // or molecular.
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
class DCField { class EXPCL_DIRECT DCField {
PUBLISHED: PUBLISHED:
int get_number() const; int get_number() const;
const string &get_name() const; const string &get_name() const;

View File

@ -17,7 +17,7 @@
// Description : Represents the complete list of Distributed Class // Description : Represents the complete list of Distributed Class
// descriptions as read from a .dc file. // descriptions as read from a .dc file.
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
class DCFile { class EXPCL_DIRECT DCFile {
PUBLISHED: PUBLISHED:
DCFile(); DCFile();
~DCFile(); ~DCFile();

View File

@ -20,7 +20,7 @@ class DCAtomicField;
// of two or more related atomic fields, that will often // of two or more related atomic fields, that will often
// be treated as a unit. // be treated as a unit.
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
class DCMolecularField : public DCField { class EXPCL_DIRECT DCMolecularField : public DCField {
PUBLISHED: PUBLISHED:
virtual DCMolecularField *as_molecular_field(); virtual DCMolecularField *as_molecular_field();