temp commit (gonna work more on the go)

This commit is contained in:
hexlocation 2025-02-09 12:26:22 +00:00
parent 258d520ede
commit e8704f731f
2 changed files with 22 additions and 0 deletions

8
src/Client.cpp Normal file
View file

@ -0,0 +1,8 @@
#include <gloox/connectionlistener.h>
#include <gloox/presencehandler.h>
#include "Client.h"
#include <Application.h>
Client::
#endif

14
src/Client.h Normal file
View file

@ -0,0 +1,14 @@
#ifndef CLIENT_H
#define CLIENT_H
#include <gloox/connectionlistener.h>
#include <gloox/presencehandler.h>
#include <Application.h>
class Client : public gloox::ConnectionListener, gloox::PresenceHandler {
public:
void connect(void);
};
#endif