input_stream.cpp 363 B

123456789101112131415161718192021
  1. /*
  2. * This file is part of the FreeStreamer project,
  3. * (C)Copyright 2011-2018 Matias Muhonen <mmu@iki.fi> 穆马帝
  4. * See the file ''LICENSE'' for using the code.
  5. *
  6. * https://github.com/muhku/FreeStreamer
  7. */
  8. #include "input_stream.h"
  9. namespace astreamer {
  10. Input_Stream::Input_Stream() : m_delegate(0)
  11. {
  12. }
  13. Input_Stream::~Input_Stream()
  14. {
  15. }
  16. }