Samchon Framework for CPP  1.0.0
IHTMLEntity.cpp
1 #include <samchon/protocol/IHTMLEntity.hpp>
2 
3 #include <samchon/WeakString.hpp>
4 
5 using namespace std;
6 using namespace samchon;
7 using namespace samchon::protocol;
8 
9 IHTMLEntity::IHTMLEntity()
10 {
11 }
12 template<> auto IHTMLEntity::toTD(const WeakString &wstr) -> string
13 {
14  return toTD(wstr.str());
15 }
Definition: RWMutex.hpp:4
auto str() const -> std::string
Get the string content.
Definition: WeakString.cpp:546
Package of network protocol and libraries.
Definition: protocol.hpp:185
Top level namespace of products built from samchon.
Definition: ByteArray.hpp:7
A string class only references characeters, reference only.
Definition: WeakString.hpp:32