CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
component.h
1
2#ifndef _system_component_model_component_h_
3#define _system_component_model_component_h_
4
5#include "system/marshal_by_ref_object.h"
6#include "system/component_model/icomponent.h"
7
8namespace System { namespace ComponentModel {
9
14class ASPOSECPP_SHARED_CLASS Component : public MarshalByRefObject, public IComponent
15{
17 typedef System::BaseTypesInfo<MarshalByRefObject, IComponent> ThisBaseTypesInfo;
19 RTTI_INFO(Component, ThisBaseTypesInfo)
20public:
22 ASPOSECPP_SHARED_API Component();
25 ASPOSECPP_SHARED_API void Dispose(bool disposing = false);
28 ASPOSECPP_SHARED_API bool get_DesignMode();
29};
30
31}} // System.ComponentModel
32#endif
Dummy class to make translated code using Component class compilable. Objects of this class should on...
Definition: component.h:15
void Dispose(bool disposing=false)
Disposable pattern support; does nothing.
bool get_DesignMode()
Checks if component is in design mode.
Dummy class for IComponent-using code to compile after translating. Objects of this class should only...
Definition: icomponent.h:14
Provides access to objects across application domain boundaries in remoting-enabled applications....
Definition: marshal_by_ref_object.h:15
Definition: db_command.h:9