22 |
return _pheamgr; |
return _pheamgr; |
23 |
} |
} |
24 |
|
|
25 |
pHea* pPheaMgr::GetpHea(const string &s, const char *c) |
pHeader* pPheaMgr::GetpHea(const string &s, const char *c) |
26 |
{ |
{ |
27 |
string temp=HEADER_NAMES; |
string temp=HEADER_NAMES; |
28 |
string::size_type spos=temp.find(ToLower(s)); |
string::size_type spos=temp.find(ToLower(s)); |
33 |
case string::npos: |
case string::npos: |
34 |
cout << " pPheaMgr : Header = " << s << " not found "; |
cout << " pPheaMgr : Header = " << s << " not found "; |
35 |
return 0; |
return 0; |
36 |
|
default: |
37 |
|
cout << " pPheaMgr : Header = " << s << " not found "; |
38 |
|
return 0; |
39 |
} |
} |
40 |
} |
} |
41 |
|
|
42 |
|
|