FACT++
1.0
Main Page
Related Pages
Namespaces
Classes
Files
Examples
pair<string,string> FactGui::Split
(
const string &
str
)
const
inline
private
Definition at line
3568
of file
FactGui.h
.
3569
{
3570
const
size_t
p =
str
.find_first_of(
'|'
);
3571
if
(p==string::npos)
3572
return
make_pair(
str
,
""
);
3573
3574
return
make_pair(
str
.substr(0, p),
str
.substr(p+1));
3575
}
str
char str[80]
Definition:
test_client.c:7
FactGui
Generated on Sun Sep 18 2016 20:50:51 for FACT++ by
1.8.11