OSDN Git Service

60bb71dbfef13170f14dcd9ef6c63ab17fb02dde
[peercast-im/PeerCastIM.git] / c: / Git / PeerCast.root / PeerCast / core / common / rtsp.h
1 // ------------------------------------------------
2 // File : rtsp.h
3 // Date: 4-apr-2002
4 // Author: giles
5 // Desc: 
6 //
7 // (c) 2002 peercast.org
8 // ------------------------------------------------
9 // This program is free software; you can redistribute it and/or modify
10 // it under the terms of the GNU General Public License as published by
11 // the Free Software Foundation; either version 2 of the License, or
12 // (at your option) any later version.
13
14 // This program is distributed in the hope that it will be useful,
15 // but WITHOUT ANY WARRANTY; without even the implied warranty of
16 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 // GNU General Public License for more details.
18 // ------------------------------------------------
19
20 #ifndef _RTSP_H
21 #define _RTSP_H
22
23 #include "http.h"
24
25 // ---------------------------------------------
26 class RTSP : public HTTP
27 {
28 public:
29         RTSP(Stream &s):HTTP(s){}
30 };
31
32 #endif