/* * File: IHttp.hpp * Author: jens * * Created on 9. Januar 2015, 20:14 */ #ifndef IHTTP_HPP #define IHTTP_HPP struct IHttpListener { IHttpListener() {} virtual ~IHttpListener() {} virtual void onUpdate(const char *pPath) = 0; }; #endif /* IHTTP_HPP */