DCL 4.0
Loading...
Searching...
No Matches
Entity Struct Reference

#include <EntityCopy.h>

Public Member Functions

 Entity ()
 Entity (const Entity &_s)
Entityoperator= (const Entity &_s)
String toString ()

Public Attributes

String name
String columns
String toName
String toColumns

Detailed Description

Definition at line 25 of file EntityCopy.h.

Constructor & Destructor Documentation

◆ Entity() [1/2]

Entity::Entity ( )
inline

Definition at line 32 of file EntityCopy.h.

32{}

◆ Entity() [2/2]

Entity::Entity ( const Entity & _s)

Definition at line 92 of file EntityCopy.cpp.

93{
94 name = _s.name;
95 columns = _s.columns;
96 toName = _s.toName;
98}
String toName
Definition EntityCopy.h:29
String toColumns
Definition EntityCopy.h:30
String name
Definition EntityCopy.h:27
String columns
Definition EntityCopy.h:28

Member Function Documentation

◆ operator=()

Entity & Entity::operator= ( const Entity & _s)

Definition at line 100 of file EntityCopy.cpp.

101{
102 name = _s.name;
103 columns = _s.columns;
104 toName = _s.toName;
105 toColumns = _s.toColumns;
106
107 return *this;
108}

◆ toString()

String Entity::toString ( )

Definition at line 110 of file EntityCopy.cpp.

111{
112 return String::format(L"name[%ls] columns[%ls] toName[%ls] toColumns[%ls",
113 name.data(), columns.data(), toName.data(), toColumns.data()
114 );
115}

Member Data Documentation

◆ columns

String Entity::columns

Definition at line 28 of file EntityCopy.h.

◆ name

String Entity::name

Definition at line 27 of file EntityCopy.h.

◆ toColumns

String Entity::toColumns

Definition at line 30 of file EntityCopy.h.

◆ toName

String Entity::toName

Definition at line 29 of file EntityCopy.h.


The documentation for this struct was generated from the following files: