C/C++
dan.asc
Associated article: Data Attribute Notation in C++
Tags: Database C/C++
_DATA ATTRIBUTE NOTATION FOR C++ CODING_
by Reginald B. Charney
Listing One
// classic C++ style
class Product {
long pid;
char desc[30];
double cost_price;
double list_price;
};
Listing Two
class Pid {
long p;
public:
Pid(long pp = 0) { p = pp; }
Pid(...


