24 lines
318 B
C++
24 lines
318 B
C++
//
|
|
// Created by rhetenor on 5/21/19.
|
|
//
|
|
|
|
#ifndef FLIPPR_DRIVER_FLIPPRSERVER_H
|
|
#define FLIPPR_DRIVER_FLIPPRSERVER_H
|
|
#include <Poco/Util/ServerApplication.h>
|
|
|
|
namespace flippR_driver
|
|
{
|
|
namespace networking
|
|
{
|
|
|
|
class FlippRServer : public Poco::Util::ServerApplication
|
|
{
|
|
|
|
};
|
|
|
|
};
|
|
}
|
|
|
|
|
|
#endif //FLIPPR_DRIVER_FLIPPRSERVER_H
|