The ones that remain blocking are the ones that run on different threads; see Task, yet another big mess to clean up.
12 lines
169 B
C
12 lines
169 B
C
#pragma once
|
|
#include "User.h"
|
|
|
|
struct Comment
|
|
{
|
|
ByteString authorName;
|
|
User::Elevation authorElevation;
|
|
bool authorIsSelf;
|
|
bool authorIsBanned;
|
|
String content;
|
|
};
|