#ifndef FeaturesService_h #define FeaturesService_h #include #include #include #include #define FEATURES_SERVICE_PATH "/rest/features" class FeaturesService { public: FeaturesService(PsychicHttpServer * server); void registerURI(); private: PsychicHttpServer * _server; }; #endif