[kde-russian] Fwd: Re: коментарии к программам
=?iso-8859-1?q?mok_=CE=C1_kde=2Eru?=
=?iso-8859-1?q?mok_=CE=C1_kde=2Eru?=
Пн Ноя 4 18:45:54 MSK 2002
Вопрос по поводу перевода одного места из доки artsbuilder:
что такое по-русски "Smartwrapped reference class"?
Контекст см. ниже из письма.
This is a forwarded message
From: Sergei Pachkov <spigel на olvs.miee.ru>
To: mok на kde.ru
Date: Monday, November 04, 2002, 3:21:53 PM
Subject: коментарии к программам
===8<==============Original message text===============
Я у местных программеров поспрашивал, что они подразумевают под
smartwrapped. Большинство могут объяснить это несколькими
предложениями, с использованием слов "инкапсуляция", "разделение
имён". Все сошлись на незнании соответствующего русского термина.
Попробуй кинуть в рассылку.
Вот контекст:
Namespaces in &arts;
Each namespace declaration corresponds to a <quote>module</quote>
declaration in the &MCOP; &IDL;.
// mcop idl
module M {
interface A
{
}
};
interface B;
In this case, the generated C++ code for the &IDL; snippet would look like
this:
// C++ header
namespace M {
/* declaration of A_base/A_skel/A_stub and similar */
class A { // Smartwrapped reference class
/* [...] */
};
}
/* declaration of B_base/B_skel/B_stub and similar */
class B {
/* [...] */
};
So when referring the classes from the above example in your C++ code, you
would have to write <classname>M::A</classname>, but only B. However, you
can of course use <quote>using M</quote>
somewhere - like with any namespace in C++.
Подробная информация о списке рассылки kde-russian