CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
icontainer.h
1
2#ifndef _system_component_model_icontainer_h_
3#define _system_component_model_icontainer_h_
4
5#include "system/object.h"
6#include "system/shared_ptr.h"
7#include "system/string.h"
8#include "system/exceptions.h"
9
10#include "system/component_model/icomponent.h"
11
12namespace System { namespace ComponentModel {
13
18class ASPOSECPP_SHARED_CLASS IContainer : public virtual System::Object
19{
21 RTTI_INFO(IContainer, ::System::BaseTypesInfo<System::Object>)
22public:
25 virtual ASPOSECPP_SHARED_API void Add(System::SharedPtr<IComponent> component) = 0;
26};
27
28}} // System::ComponentModel
29
30#endif
Dummy interface for IContainer-using code to compile. Objects of this class should only be allocated ...
Definition: icontainer.h:19
virtual void Add(System::SharedPtr< IComponent > component)=0
RTTI information.
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