- retrieving home dir and create FsTrack folder

- added adjustable KML update interval
- prepared for .kmz

git-svn-id: http://moon:8086/svn/software/trunk/projects/FsTrack@125 b431acfa-c32f-4a4a-93f1-934dc6c82436
This commit is contained in:
2015-01-11 11:04:51 +00:00
parent 14fc402ff3
commit b138370221
10 changed files with 103 additions and 27 deletions
+2 -1
View File
@@ -7,11 +7,12 @@
class HttpServer : public juce::Thread
{
public:
HttpServer(const char *pDocDir);
HttpServer(int port, const char *pDocDir);
~HttpServer(void);
void addListener(IHttpListener *pListener);
private:
int m_port;
const char *m_docDir;
ListenerList <IHttpListener> m_listeners;