summaryrefslogtreecommitdiff
path: root/l10ntools/inc/po.hxx
diff options
context:
space:
mode:
authorZolnai Tamás <zolnaitamas2000@gmail.com>2013-05-02 15:06:23 +0200
committerZolnai Tamás <zolnaitamas2000@gmail.com>2013-05-02 15:48:30 +0200
commit29400c568a84339066ef238e836cfeb19f732873 (patch)
tree302621cbf9148535962fa96a36d4c3a2c8845969 /l10ntools/inc/po.hxx
parentdb46a7336e330516f4df4e41f6895aa1afb03450 (diff)
Some code scrubing
Add doxygen documentation for classes and methods Delete useless comments. Add include guards where missing. Delete some useless typedef. Change-Id: I9bba16560790239d7775fcd40981465e70e5d437
Diffstat (limited to 'l10ntools/inc/po.hxx')
-rwxr-xr-xl10ntools/inc/po.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/l10ntools/inc/po.hxx b/l10ntools/inc/po.hxx
index 603727d8583b..1ec3b33e7861 100755
--- a/l10ntools/inc/po.hxx
+++ b/l10ntools/inc/po.hxx
@@ -52,16 +52,16 @@ public:
PoEntry( const PoEntry& rPo );
PoEntry& operator=( const PoEntry& rPo );
- OString getSourceFile() const;
+ OString getSourceFile() const; ///< Get name of file from which entry is extracted
OString getGroupId() const;
OString getLocalId() const;
- OString getResourceType() const;
- TYPE getType() const;
+ OString getResourceType() const; ///< Get the type of component from which entry is extracted
+ TYPE getType() const; ///< Get the type of entry
OString getMsgId() const;
OString getMsgStr() const;
bool isFuzzy() const;
- OString getKeyId() const;
+ /// Check whether po-s belong to the same localization component
static bool IsInSameComp(const PoEntry& rPo1,const PoEntry& rPo2);
static OString genKeyId(const OString& rGenerator);
@@ -85,7 +85,7 @@ public:
friend class PoOfstream;
friend class PoIfstream;
- PoHeader( const OString& rExtSrc );
+ PoHeader( const OString& rExtSrc ); ///< Template Constructor
~PoHeader();
};