Skip to content

Commit

Permalink
using xtd::collections::generic::sorted_dictionary instead xtd::colle…
Browse files Browse the repository at this point in the history
…ctions::specialized::string_dictionary
  • Loading branch information
gammasoft71 committed Jul 30, 2024
1 parent 1b47e98 commit d917dbf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/xtd.core/include/xtd/configuration/file_settings.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/// @copyright Copyright (c) 2024 Gammasoft. All rights reserved.
#pragma once
#include "../core_export.h"
#include "../collections/specialized/string_dictionary.h"
#include "../collections/generic/sorted_dictionary.h"
#include "../collections/specialized/string_collection.h"
#include "../io/directory.h"
#include "../io/file.h"
Expand Down Expand Up @@ -34,8 +34,8 @@ namespace xtd {
/// @name Public Aliass

/// @{
/// @brief Represents a std::map with the key and the value strongly typed to be strings.
using string_dictionary = xtd::collections::specialized::string_dictionary;
/// @brief Represents a xtd::collections::generic::sorted_dictionary with the key and the value strongly typed to be strings.
using string_dictionary = xtd::collections::generic::sorted_dictionary<xtd::ustring, xtd::ustring>;

/// @brief Represents a collection of strings.
using string_collection = xtd::collections::specialized::string_collection;
Expand Down

0 comments on commit d917dbf

Please sign in to comment.