Sophie

Sophie

distrib > Fedora > 14 > i386 > media > os > by-pkgid > fc62b1a09d3a2a2032c7fe6d982e91e3 > files > 236

xsd-3.3.0-2.fc14.i686.rpm

// file      : examples/cxx/parser/mixed/anchor.hxx
// author    : Boris Kolpackov <boris@codesynthesis.com>
// copyright : not copyrighted - public domain

#ifndef ANCHOR_HXX
#define ANCHOR_HXX

#include <string>

struct anchor
{
  anchor (const std::string& text, const std::string& uri)
      : uri_ (uri), text_ (text)
  {
  }

  const std::string&
  text () const
  {
    return text_;
  }

  const std::string&
  uri () const
  {
    return uri_;
  }

private:
  std::string uri_;
  std::string text_;
};

#endif // ANCHOR_HXX