/* * * apps/videoServer/VideoServer.H -- * * Copyright (C) Nicolas Roussel * * See the file LICENSE for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * */ #ifndef VideoServer_H #define VideoServer_H #include #include #include #include using namespace nucleo ; class VideoServer : public ReactiveObject { protected: ConfigDict config ; TcpServer *server ; DNSServiceAnnouncer *announcer ; void react(Observable *obs) ; public: VideoServer(char *configfile) ; ~VideoServer(void) ; } ; #endif