Skip to content

Commit

Permalink
int対応
Browse files Browse the repository at this point in the history
refs #6
  • Loading branch information
oden committed Mar 13, 2013
1 parent 84403f8 commit 80c5488
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
11 changes: 9 additions & 2 deletions OCppOperator/ID.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,17 @@ class ID
/*!
@method ID
@abstract コピーコンストラクタ。
@discussion 無指定の場合、nil。暗黙の型変換により、ID型を渡すこともできる。渡されたオブジェクトはretainされる。id型からの暗黙の型変換を実現している。
@param id
@discussion id型からの暗黙の型変換を実現している。
@param id 無指定の場合、nil。暗黙の型変換により、ID型を渡すこともできる。渡されたオブジェクトはretainされる。
*/
ID(const id = nil);
/*!
@method ID
@abstract コピーコンストラクタ。
@discussion id型からの暗黙の型変換を実現している。
@param int NSNumberに変換可能な型。
*/
ID(const int);
/*!
@method ~ID
@abstract デストラクタ。
Expand Down
7 changes: 6 additions & 1 deletion OCppOperator/ID.mm
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@
this->object = [source retain];
}

ID::ID(const int t)
{
this->object = [@(t) retain];
}

ID::~ID()
{
[this->object release];
Expand All @@ -32,7 +37,7 @@

ID& ID::operator+=(const id source)
{
[this->object autorelease];
[*this autorelease];
this->object = [[*this stringByAppendingFormat:@"%@", source] retain];
return *this;
}

0 comments on commit 80c5488

Please sign in to comment.