Translated all comments found in header files (*.h) from French to English.

git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@1960 bfdf4180-ca20-0410-9c96-a3a8aa849046
This commit is contained in:
xavier
2012-11-09 21:09:24 +00:00
parent 75c37aa029
commit 160ccec733
117 changed files with 1710 additions and 1770 deletions

View File

@@ -22,34 +22,34 @@
class Conductor;
class ConductorSegmentProfile;
/**
Cette classe contient le profil (= les caracteristiques essentielles) d'un
conducteur.
This class represents the profile of a conductor, i.e. its primary
characteristics.
*/
class ConductorProfile {
public:
// constructeurs, destructeur
// constructors, destructor
ConductorProfile();
ConductorProfile(Conductor *conductor);
ConductorProfile(const ConductorProfile &);
ConductorProfile &operator=(const ConductorProfile &);
virtual ~ConductorProfile();
// attributs
// attributes
public:
/// Segment composant le profil du conducteur
/// Segments composing the conductor
QList<ConductorSegmentProfile *> segments;
/// Orientation de la borne de depart du profil
/// Orientation of the start terminal
QET::Orientation beginOrientation;
/// Orientation de la borne d'arrivee du profil
/// Orientation of the end terminal.
QET::Orientation endOrientation;
// methodes
// methods
public:
bool isNull() const;
void setNull();
qreal width() const;
qreal height() const;
uint nbSegments(QET::ConductorSegmentType) const;
uint segmentsCount(QET::ConductorSegmentType) const;
QList<ConductorSegmentProfile *> horizontalSegments();
QList<ConductorSegmentProfile *> verticalSegments();
void fromConductor(Conductor *);