QQ.ned 799 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // Copyright 2012 OpenSim Ltd.
  3. //
  4. // This library is free software, you can redistribute it
  5. // and/or modify
  6. // it under the terms of the GNU Lesser General Public License
  7. // as published by the Free Software Foundation;
  8. // either version 2 of the License, or any later version.
  9. // The library is distributed in the hope that it will be useful,
  10. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  12. // See the GNU Lesser General Public License for more details.
  13. //
  14. // @author Zoltan Bojthe
  15. //
  16. // package module_.lib;
  17. //
  18. // a simple queue for prevents "channel is currently busy with an ongoing transmission"
  19. // on an output channel connected to "out" gate
  20. //
  21. simple QQ
  22. {
  23. gates:
  24. input in;
  25. output out;
  26. }