summaryrefslogtreecommitdiff
path: root/src/lib/types.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-12-11 00:11:51 +0100
committerCarl Hetherington <cth@carlh.net>2022-12-11 00:19:21 +0100
commit53d472f6e4531586fb91e649c386fdfaecb6ecaf (patch)
tree5cdba704efae6c978eb7e9dbfd76ee661d1ca87c /src/lib/types.h
parenta3ef6c08705798ac1cd8b62b77697c35c3506567 (diff)
Extract named_channel.h
Diffstat (limited to 'src/lib/types.h')
-rw-r--r--src/lib/types.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/lib/types.h b/src/lib/types.h
index ad9158c8c..9bf4c80b1 100644
--- a/src/lib/types.h
+++ b/src/lib/types.h
@@ -199,19 +199,4 @@ enum class EmailProtocol {
};
-class NamedChannel
-{
-public:
- NamedChannel (std::string name_, int index_)
- : name(name_)
- , index(index_)
- {}
-
- std::string name;
- int index;
-};
-
-
-bool operator== (NamedChannel const& a, NamedChannel const& b);
-
#endif