2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-09-05 08:25:16 +00:00

Fetchable simplification

git-svn-id: svn://bind10.isc.org/svn/bind10/branches/trac408@3798 e5f2f494-b856-4b98-b285-d166d9295462
This commit is contained in:
Michal Vaner
2010-12-11 10:40:22 +00:00
parent 5bf4372c4d
commit b3634f7c0e

View File

@@ -48,12 +48,8 @@ class Fetchable {
};
/// \short Constructors
//@{
/// This creates the Fetchable object in NOT_ASKED state.
Fetchable() :
state_(NOT_ASKED)
{ }
/// This creates the Fetchable object in the given state.
Fetchable(State state) :
Fetchable(State state = NOT_ASKED) :
state_(state)
{ }
//@}