CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
db_null.h
1
3#ifndef _aspose_system_db_null_h_
4#define _aspose_system_db_null_h_
5
6#include <system/object.h>
7
8namespace System {
9
14class ASPOSECPP_SHARED_CLASS DBNull : public System::Object
15{
16 RTTI_INFO(System::DBNull, ::System::BaseTypesInfo<System::Object>)
17
18public:
20 static const ASPOSECPP_SHARED_API System::SharedPtr<DBNull> Value;
21
22#ifdef __DBG_FOR_EACH_MEMBER
24 virtual const char* DBG_class_name() const override { return "DBNull"; }
25#endif
26};
27
28}
29
30#endif // _aspose_system_db_null_h_
Represents a non-existing value. Objects of this class should only be allocated using System::MakeObj...
Definition: db_null.h:15
static const System::SharedPtr< DBNull > Value
Shared pointer to an instance of DBNull.
Definition: db_null.h:20
Base class that enables using methods available for System.Object class in C#. All non-trivial classe...
Definition: object.h:62
Pointer class to wrap types being allocated on heap. Use it to manage memory for classes inheriting O...
Definition: smart_ptr.h:180
Definition: db_command.h:9