Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008 #ifndef TAG_PIMPL_HXX
00009 #define TAG_PIMPL_HXX
00010
00011 #include "tag-pskel.hxx"
00012
00013 class tag_pimpl: public virtual tag_pskel
00014 {
00015 public:
00016 virtual void
00017 pre ();
00018
00019 virtual void
00020 k (const ::std::string&);
00021
00022 virtual void
00023 v (const ::std::string&);
00024
00025 virtual std::pair<std::string, std::string>
00026 post_tag ();
00027 private:
00028 std::string key,value;
00029 };
00030
00031 #endif // TAG_PIMPL_HXX