/mordor/streams/filter.cpp

http://github.com/mozy/mordor · C++ · 46 lines · 35 code · 10 blank · 1 comment · 0 complexity · a356cd1475003197f16938b9222253d4 MD5 · raw file

  1. // Copyright (c) 2010 - Mozy, Inc.
  2. #include "filter.h"
  3. #include "mordor/assert.h"
  4. namespace Mordor {
  5. long long
  6. MutatingFilterStream::seek(long long offset, Anchor anchor)
  7. {
  8. MORDOR_NOTREACHED();
  9. }
  10. long long
  11. MutatingFilterStream::size()
  12. {
  13. MORDOR_NOTREACHED();
  14. }
  15. void
  16. MutatingFilterStream::truncate(long long size)
  17. {
  18. MORDOR_NOTREACHED();
  19. }
  20. ptrdiff_t
  21. MutatingFilterStream::find(char delim, size_t sanitySize, bool throwIfNotFound)
  22. {
  23. MORDOR_NOTREACHED();
  24. }
  25. ptrdiff_t
  26. MutatingFilterStream::find(const std::string &str, size_t sanitySize,
  27. bool throwIfNotFound)
  28. {
  29. MORDOR_NOTREACHED();
  30. }
  31. void
  32. MutatingFilterStream::unread(const Buffer &b, size_t len)
  33. {
  34. MORDOR_NOTREACHED();
  35. }
  36. }