summaryrefslogtreecommitdiff
path: root/gptpart.h
diff options
context:
space:
mode:
authorsrs5694 <srs5694@users.sourceforge.net>2010-09-24 20:39:41 -0400
committersrs5694 <srs5694@users.sourceforge.net>2010-09-24 20:39:41 -0400
commit5a081757ea2e32a491349544fea92826ccf739f6 (patch)
tree08a33c9b6b6a1a9a8e6c492b21287b972306b185 /gptpart.h
parent82f3f0b529ec1bb936141ae41b03f95c72ce573a (diff)
downloadsgdisk-5a081757ea2e32a491349544fea92826ccf739f6.tar.gz
Added -F option to sgdisk
Diffstat (limited to 'gptpart.h')
-rw-r--r--gptpart.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/gptpart.h b/gptpart.h
index 7ae1260..7ed6702 100644
--- a/gptpart.h
+++ b/gptpart.h
@@ -53,9 +53,9 @@ class GPTPart {
PartType & GetType(void) {return partitionType;}
uint16_t GetHexType(void);
string GetTypeName(void);
- GUIDData GetUniqueGUID(void) {return uniqueGUID;}
- uint64_t GetFirstLBA(void) {return firstLBA;}
- uint64_t GetLastLBA(void) {return lastLBA;}
+ 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 GetAttributes(void) {return attributes;}
string GetDescription(void);