Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
kadhikari committed Oct 9, 2024
1 parent dcc3a3f commit 6a6e797
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion source/type/message.h
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,19 @@ enum class Effect {

enum class ActiveStatus { past = 0, active = 1, future = 2 };

enum class ChannelType { web = 0, sms, email, mobile, notification, twitter, facebook, unknown_type, title, beacon, pids };
enum class ChannelType {
web = 0,
sms,
email,
mobile,
notification,
twitter,
facebook,
unknown_type,
title,
beacon,
pids
};

inline std::string to_string(Effect effect) {
switch (effect) {
Expand Down

0 comments on commit 6a6e797

Please sign in to comment.