summaryrefslogtreecommitdiff
path: root/gptpart.h
diff options
context:
space:
mode:
authorsrs5694 <srs5694@users.sourceforge.net>2011-03-12 01:23:12 -0500
committersrs5694 <srs5694@users.sourceforge.net>2011-03-12 01:23:12 -0500
commitbf8950cad0285ee6ab8a896e8d0a30c5fb62c7af (patch)
treeca6eaedd03128249d84544d6ad077f1498d66e41 /gptpart.h
parent96312236d7f0c857efc95871a31857e24ecdc81b (diff)
downloadsgdisk-bf8950cad0285ee6ab8a896e8d0a30c5fb62c7af.tar.gz
Version 0.7.0
Diffstat (limited to 'gptpart.h')
-rw-r--r--gptpart.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gptpart.h b/gptpart.h
index 25da6df..104a818 100644
--- a/gptpart.h
+++ b/gptpart.h
@@ -53,12 +53,12 @@ class GPTPart {
// Simple data retrieval:
PartType & GetType(void) {return partitionType;}
- uint16_t GetHexType(void);
+ uint16_t GetHexType(void) const;
string GetTypeName(void);
const GUIDData GetUniqueGUID(void) const {return uniqueGUID;}
uint64_t GetFirstLBA(void) const {return firstLBA;}
uint64_t GetLastLBA(void) const {return lastLBA;}
- uint64_t GetLengthLBA(void);
+ uint64_t GetLengthLBA(void) const;
Attributes GetAttributes(void) {return attributes;}
void ShowAttributes(uint32_t partNum) {attributes.ShowAttributes(partNum);}
string GetDescription(void);