This commit is contained in:
Debucquoy 2022-11-04 16:57:23 +01:00
parent fa237eb31c
commit f13900156e
No known key found for this signature in database
GPG Key ID: 3B9EEB701C9E2919
4 changed files with 15 additions and 2 deletions

View File

@ -4,7 +4,7 @@
#include <string>
#include <vector>
class Payload; //TODO
class Payload;
class Connection
{

View File

@ -7,7 +7,7 @@ SOURCES=$(wildcard *.cpp)
all: mcping
mcping: $(SOURCES)
$(CXX) $(CXXFLAGS) -o $< $(SOURCES) $(LDLIBS)
$(CXX) $(CXXFLAGS) -o $@ $(SOURCES) $(LDLIBS)
run: mcping
./mcping

0
Payload.cpp Normal file
View File

13
Payload.h Normal file
View File

@ -0,0 +1,13 @@
#ifndef PAYLOAD_H
#define PAYLOAD_H
class Payload
{
private:
public:
Payload();
virtual ~Payload();
};
#endif /* PAYLOAD_H */