tinysdp.h 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /*
  2. * Copyright (C) 2009 Mamadou Diop.
  3. *
  4. * Contact: Mamadou Diop <diopmamadou(at)doubango[dot]org>
  5. *
  6. * This file is part of Open Source Doubango Framework.
  7. *
  8. * DOUBANGO is free software: you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation, either version 3 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * DOUBANGO is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with DOUBANGO.
  20. *
  21. */
  22. /**@file tinysdp.h
  23. * @brief SDP API functions.
  24. *
  25. * @author Mamadou Diop <diopmamadou(at)doubango[dot]org>
  26. *
  27. */
  28. #ifndef TINYSDP_TINYSDP_H
  29. #define TINYSDP_TINYSDP_H
  30. #include "tinysdp/tsdp_message.h"
  31. #include "tinysdp/parsers/tsdp_parser_message.h"
  32. #include "tinysdp/headers/tsdp_header_A.h"
  33. #include "tinysdp/headers/tsdp_header_B.h"
  34. #include "tinysdp/headers/tsdp_header_C.h"
  35. #include "tinysdp/headers/tsdp_header_Dummy.h"
  36. #include "tinysdp/headers/tsdp_header_E.h"
  37. #include "tinysdp/headers/tsdp_header_I.h"
  38. #include "tinysdp/headers/tsdp_header_K.h"
  39. #include "tinysdp/headers/tsdp_header_M.h"
  40. #include "tinysdp/headers/tsdp_header_O.h"
  41. #include "tinysdp/headers/tsdp_header_P.h"
  42. #include "tinysdp/headers/tsdp_header_R.h"
  43. #include "tinysdp/headers/tsdp_header_S.h"
  44. #include "tinysdp/headers/tsdp_header_T.h"
  45. #include "tinysdp/headers/tsdp_header_U.h"
  46. #include "tinysdp/headers/tsdp_header_V.h"
  47. #include "tinysdp/headers/tsdp_header_Z.h"
  48. #endif /* TINYSDP_TINYSDP_H */