* Use a requirements.txt * Add initial travis configuration * Attempt fix travis configuration * Attempt fix g++ error * Bugfix missing path dir on autostart * Attempt install build-essential instead of g++ * Add missing psutil from requirements * Modify README * Attempt fix build errors in travis * Update README * Add simple build badges
22 lines
437 B
C++
22 lines
437 B
C++
#ifndef __COMFORTABLE_SWIPE__service_index_hpp__
|
|
#define __COMFORTABLE_SWIPE__service_index_hpp__
|
|
|
|
#include <map> // std::map
|
|
#include <string> // std::string
|
|
|
|
namespace comfortable_swipe
|
|
{
|
|
namespace service
|
|
{
|
|
void buffer();
|
|
void debug();
|
|
void help();
|
|
void restart();
|
|
void start();
|
|
void stop();
|
|
void status();
|
|
}
|
|
}
|
|
|
|
#endif /* __COMFORTABLE_SWIPE__service_index_hpp__ */
|