aboutsummaryrefslogtreecommitdiffstats
path: root/src/types.h
diff options
context:
space:
mode:
authorConfuSomu2022-12-26 18:18:21 -0500
committerConfuSomu2022-12-26 18:18:21 -0500
commit8b3b17f03ed8a3bfc9d72978f8b0134807132ee0 (patch)
treebafdd7cba619b16e3478eb10107e0d2235be9b51 /src/types.h
parent477a7257e3aaec13dac7096ab91749399543502e (diff)
downloadActorViewer-8b3b17f03ed8a3bfc9d72978f8b0134807132ee0.tar
ActorViewer-8b3b17f03ed8a3bfc9d72978f8b0134807132ee0.tar.gz
ActorViewer-8b3b17f03ed8a3bfc9d72978f8b0134807132ee0.zip
Implement initial list of statuses
Diffstat (limited to 'src/types.h')
-rw-r--r--src/types.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/types.h b/src/types.h
new file mode 100644
index 0000000..e193216
--- /dev/null
+++ b/src/types.h
@@ -0,0 +1,9 @@
+#pragma once
+
+struct ViewTootTypes {
+ bool includePublic = true;
+ bool includeUnlisted = true;
+ bool includePrivate = true;
+ bool includeDirect = true;
+ bool onlyWithAttachment = false;
+};