From e42d8636f3aa15e0ea8f723133914d6dba22009c Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Thu, 30 Aug 2018 19:28:02 -0400 Subject: Whitespace changes --- src/configuration.h | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) (limited to 'src/configuration.h') diff --git a/src/configuration.h b/src/configuration.h index 543e306..e9c3be3 100644 --- a/src/configuration.h +++ b/src/configuration.h @@ -6,64 +6,64 @@ #include namespace twitter { - + class configuration { public: enum class resizetype { fit, crop }; - + struct photosize { size_t height; size_t width; resizetype resize; }; - + explicit configuration(std::string data); - + size_t getCharactersReservedPerMedia() const { return _characters_reserved_per_media; } - + size_t getDirectMessageCharacterLimit() const { return _dm_text_character_limit; } - + size_t getMaxMediaPerUpload() const { return _max_media_per_upload; } - + size_t getPhotoSizeLimit() const { return _photo_size_limit; } - + const std::map& getPhotoSizes() const { return _photo_sizes; } - + size_t getShortUrlLength() const { return _short_url_length; } - + size_t getShortHttpsUrlLength() const { return _short_https_url_length; } - + const std::set& getNonUsernamePaths() const { return _non_username_paths; } - + private: - + size_t _characters_reserved_per_media; size_t _dm_text_character_limit; size_t _max_media_per_upload; @@ -73,7 +73,7 @@ namespace twitter { size_t _short_https_url_length; std::set _non_username_paths; }; - + }; #endif /* end of include guard: CONFIGURATION_H_A7164D18 */ -- cgit 1.4.1