Skip to content

Commit 82bcdd8

Browse files
committed
Review abastract_object class
1 parent 237937e commit 82bcdd8

File tree

3 files changed

+4
-12
lines changed

3 files changed

+4
-12
lines changed

src/xtd.core/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1286,7 +1286,6 @@ add_sources(
12861286
)
12871287
add_sources(
12881288
"src/xtd/environment_version.cpp"
1289-
"src/xtd/abstract.cpp"
12901289
"src/xtd/access_violation_exception.cpp"
12911290
"src/xtd/register_any_stringer.cpp"
12921291
"src/xtd/attribute.cpp"

src/xtd.core/include/xtd/abstract_object.hpp

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,18 +25,17 @@ namespace xtd {
2525
/// };
2626
/// ```
2727
class abstract_object : public xtd::object {
28-
public:
29-
/// @cond
30-
~abstract_object() override = 0;
31-
/// @endcond
32-
3328
protected:
3429
/// @name Protected Constructors
3530

3631
/// @{
3732
/// @brief Initializes a new instance of the xtd::abstract_object class.
3833
abstract_object() = default;
3934
/// @}
35+
36+
/// @cond
37+
~abstract_object() override = default;
38+
/// @endcond
4039
};
4140

4241
/// @brief This keyword is used to represents an abstract class.

src/xtd.core/src/xtd/abstract.cpp

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)