Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008 #include "tag-pimpl.hxx"
00009
00010
00011
00012
00013 void tag_pimpl::
00014 pre ()
00015 {
00016 }
00017
00018 void tag_pimpl::
00019 k (const ::std::string& k)
00020 {
00021 key=k;
00022 }
00023
00024 void tag_pimpl::
00025 v (const ::std::string& v)
00026 {
00027 value=v;
00028 }
00029
00030 std::pair<std::string, std::string> tag_pimpl::
00031 post_tag ()
00032 {
00033 return std::pair<std::string, std::string>(key, value);
00034 }
00035