Skip to content

Commit

Permalink
EA: Adds enum's comment
Browse files Browse the repository at this point in the history
  • Loading branch information
kenorb committed Jan 8, 2022
1 parent a7f3334 commit d1c927b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions EA.enum.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ enum ENUM_EA_DATA_STORE_TYPE {

/* Defines EA data export methods. */
enum ENUM_EA_DATA_EXPORT_METHOD {
EA_DATA_EXPORT_NONE = 0 << 0,
EA_DATA_EXPORT_CSV = 1 << 0, // Export into CSV file.
EA_DATA_EXPORT_DB = 1 << 1, // Export into database table.
EA_DATA_EXPORT_JSON = 1 << 2, // Export into JSON file.
EA_DATA_EXPORT_ALL = (1 << 3) - 1, // Export in all formats.
EA_DATA_EXPORT_NONE = 0 << 0, // (None)
EA_DATA_EXPORT_CSV = 1 << 0, // CSV file
EA_DATA_EXPORT_DB = 1 << 1, // Database (SQLite)
EA_DATA_EXPORT_JSON = 1 << 2, // JSON file
EA_DATA_EXPORT_ALL = (1 << 3) - 1, // All
};

/* Defines EA state flags. */
Expand Down

0 comments on commit d1c927b

Please sign in to comment.